Skip to content

Instantly share code, notes, and snippets.

@CrowderSoup
Created November 28, 2012 20:38
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 CrowderSoup/4164215 to your computer and use it in GitHub Desktop.
Save CrowderSoup/4164215 to your computer and use it in GitHub Desktop.
PHP array_map() example
<?php
$stuff = array('Bean', 'Apple', 'Tree');
$stuff = array_map('strtolower', $stuff);
var_dump($stuff);
?>

array (size=3)
0 => string 'bean' (length=4)
1 => string 'apple' (length=5)
2 => string 'tree' (length=4)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment