Skip to content

Instantly share code, notes, and snippets.

@hungneox
Last active December 20, 2015 10:39
Show Gist options
  • Save hungneox/6116777 to your computer and use it in GitHub Desktop.
Save hungneox/6116777 to your computer and use it in GitHub Desktop.
combine key value with array_walk
<?php
$a = array(
'email' => 'test@test.com',
'desc' => 'Who know',
'button_link' => 'yest'
);
function qh_combine(&$item, $key){
$item = "$key : $item";
}
array_walk($a, 'qh_combine');
print_r($a);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment