Skip to content

Instantly share code, notes, and snippets.

@tarunama
Created May 22, 2014 05:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tarunama/92aaa6eb2c39f9a3530a to your computer and use it in GitHub Desktop.
Save tarunama/92aaa6eb2c39f9a3530a to your computer and use it in GitHub Desktop.
[PHP] 文字列の1文字目を大文字にする ref: http://qiita.com/tarunama/items/2bb5ff9ff1556d61e526
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