함수 ucwords()

Jmnote (토론 | 기여)님의 2018년 8월 19일 (일) 02:03 판 (→‎같이 보기)
title()
ucwords()

1 PHP

$s = 'hello, world!';
echo ucwords($s);
# Hello, World!

2 Python

s = 'hello, world!'
print( s.title() )
# Hello, World!

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}