What is the difference between implode() & join()

php

Solution

They are aliases of each other. They should theoretically work exactly the same. Although, using explode/implode has been shown to increase the awesomeness of your code by 10%

Problem

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?

Original source