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

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



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

1 개요

ucwords()

2 PHP

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

3 같이 보기

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