Skip to content

Instantly share code, notes, and snippets.

@puiutucutu
Created October 16, 2015 14:46
Show Gist options
  • Select an option

  • Save puiutucutu/54767d7d3653468f23a1 to your computer and use it in GitHub Desktop.

Select an option

Save puiutucutu/54767d7d3653468f23a1 to your computer and use it in GitHub Desktop.
PHP Closure for merging array values with implode
$names = array_map(function($array) {
return '\'' . $array['Name'] . '\'';
}, $officers_filtered);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment