(PHP 4, PHP 5, PHP 7, PHP 8)
join — implode() のエイリアス
この関数は次の関数のエイリアスです。 implode().
$arr = array('Hello','World!','Beautiful','Day!');echo join(" ",$arr);result will be Hello World! Beautiful Day!