$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
*/