Just copy the array, then delete the cname
property before calling implode
.
$copy = $arr;unset($copy['cname']);implode($copy);
This works because in PHP, array assignment copies. (Sort of bizarre, but it works.)
Just copy the array, then delete the cname
property before calling implode
.
$copy = $arr;unset($copy['cname']);implode($copy);
This works because in PHP, array assignment copies. (Sort of bizarre, but it works.)