Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Last active May 1, 2019 16:05
Show Gist options
  • Save jlittlejohn/5685473 to your computer and use it in GitHub Desktop.
Save jlittlejohn/5685473 to your computer and use it in GitHub Desktop.
PHP: array_map
<?php
$alphabet=array();
/* Create lower Case Alphabet */
for($i=97;$i<123;$i++) $alphabet[]=chr($i);
/* Convert to Uppercase */
$upperCaseAlphabet = array_map('strtoupper',$alphabet);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment