parent root
PHP: join - Manual

join

(PHP 4, PHP 5, PHP 7)

joinAlias of implode()

Description

This function is an alias of: implode().

add a noteadd a note

User Contributed Notes 1 note

up
2
ashish at bugdecode dot com
2 months ago
$arr = array('Hello','World!','Beautiful','Day!');
echo join(" ",$arr);

result will be
Hello World! Beautiful Day!
To Top
parent root