How to put string chunks into one string in PHP

1 Answer

0 votes
$arr = array("a", "new", "advanced", "operating", "system");
 
$arrWithSpaces = implode(" ", $arr);
echo "arr with Spaces = $arrWithSpaces <br />";

$arrdWithDashes = implode("-", $arr);
echo "arr with Dashes = $arrdWithDashes";

 
/*
run:

arr with Spaces = a new advanced operating system
arr with Dashes = a-new-advanced-operating-system

*/


answered Aug 16, 2014 by avibootz
edited Jul 4, 2015 by avibootz

Related questions

...