1 개요[ | ]
- ucwords()
2 PHP[ | ]

PHP
Copy
echo ucwords('FooBar') . PHP_EOL; # FooBar
echo ucwords('hello, world!') . PHP_EOL; # Hello, World!
Loading
3 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.
echo ucwords('FooBar') . PHP_EOL; # FooBar
echo ucwords('hello, world!') . PHP_EOL; # Hello, World!