Skip to content

Instantly share code, notes, and snippets.

@abedsujan
Created February 6, 2012 01:13
Show Gist options
  • Save abedsujan/1748769 to your computer and use it in GitHub Desktop.
Save abedsujan/1748769 to your computer and use it in GitHub Desktop.
Multidimensional Array Implode
function r_implode( $glue, $pieces )
{
foreach( $pieces as $r_pieces )
{
if( is_array( $r_pieces ) )
{
$retVal[] = r_implode( $glue, $r_pieces );
}
else
{
$retVal[] = $r_pieces;
}
}
return implode( $glue, $retVal );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment