Skip to content

Instantly share code, notes, and snippets.

@khoand0000
Created September 11, 2014 15:29
Show Gist options
  • Save khoand0000/67ce0696f9f2b8d13072 to your computer and use it in GitHub Desktop.
Save khoand0000/67ce0696f9f2b8d13072 to your computer and use it in GitHub Desktop.
<?php
function key_implode($glue, $array){
$keys = array_keys($array);
return implode($glue, $keys);
}
$arr = array("cats" => 4, "dogs" => 8, "fish" =>10);
echo key_implode(",", $arr);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment