Skip to content

Instantly share code, notes, and snippets.

@ha1t
Created September 8, 2014 11:54
Show Gist options
  • Save ha1t/a26557ba1d3f9d3a6906 to your computer and use it in GitHub Desktop.
Save ha1t/a26557ba1d3f9d3a6906 to your computer and use it in GitHub Desktop.
<?php
/**
*
*
*/
$array = array('hoge', 'huga', 'moge');
$result_1 = array();
foreach ($array as $item) {
$result_1[] = $item . '_1';
}
var_dump($result_1);
var_dump(array_map(function ($item) { return $item . '_2'; }, $array));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment