Skip to content

Instantly share code, notes, and snippets.

@nixon1333
Last active April 12, 2017 06:34
Show Gist options
  • Save nixon1333/a4478bcf13245de3c6ff08855c34b82b to your computer and use it in GitHub Desktop.
Save nixon1333/a4478bcf13245de3c6ff08855c34b82b to your computer and use it in GitHub Desktop.
<?php
function implode_recursive($g, $p) {
return is_array($p) ?
implode($g, array_map(__FUNCTION__, array_fill(0, count($p), $g), $p)) :
$p;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment