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

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



2023년 9월 17일 (일) 16:52 판

1 개요

ucwords()

2 PHP

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

3 같이 보기

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