Skip to content

Instantly share code, notes, and snippets.

@f3ath
Created December 1, 2016 18:02
Show Gist options
  • Save f3ath/e2ee151199e82440a87c5662b86fb07c to your computer and use it in GitHub Desktop.
Save f3ath/e2ee151199e82440a87c5662b86fb07c to your computer and use it in GitHub Desktop.
<php
function implode_recursive(string $glue, array $pieces) {
return implode(
$glue,
array_map(function ($v) use ($glue) {
return is_array($v) ? implode_recursive($glue, $v) : $v;
}, $pieces)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment