Created
May 22, 2014 05:51
-
-
Save tarunama/92aaa6eb2c39f9a3530a to your computer and use it in GitHub Desktop.
[PHP] 文字列の1文字目を大文字にする ref: http://qiita.com/tarunama/items/2bb5ff9ff1556d61e526
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach ($ary as $val) { | |
$val[0] = strtoupper($val[0]); | |
.... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment