"함수 ucwords()"의 두 판 사이의 차이

7번째 줄: 7번째 줄:
{{참고|PHP ucwords()}}
{{참고|PHP ucwords()}}
<source lang='PHP'>
<source lang='PHP'>
$s = 'hello, world!';
echo ucwords('hello, world!');
echo ucwords($s);
# Hello, World!
# Hello, World!
</source>
<source lang='PHP'>
echo ucwords('FooBar');
# FooBar
</source>
</source>



2020년 1월 23일 (목) 11:45 판

title()
ucwords()

1 PHP

echo ucwords('hello, world!');
# Hello, World!
echo ucwords('FooBar');
# FooBar

2 Python

print( 'hello, world!'.title() )
# Hello, World!
print( 'FooBar'.title() )
# Foobar

3 같이 보기

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