puiu91
10/16/2015 - 2:46 PM

PHP Closure for merging array values with implode

PHP Closure for merging array values with implode

$names = array_map(function($array) {
	return '\'' . $array['Name'] . '\'';
}, $officers_filtered);