PHP join() May 22, 2012 Pramod T P Its an alias of implode() and joins array elements with a string Example <?php $arry = array(“PHP”,”HTML”,”JS”); echo join(“,”,$arry); ?> Output PHP,HTML,JS