(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!