What is the difference between implode() & join() as both work the same way.
<?php
$array = array(1,2,3);
echo join(",", $array); // output 1,2,3
echo implode(",", $array); // output 1,2,3
?>
Is there is any advantage of using one over another?