PHP Velho Oeste 2024

join

(PHP 4, PHP 5, PHP 7, PHP 8)

joinimplode() のエイリアス

説明

この関数は次の関数のエイリアスです。 implode().

add a note add a note

User Contributed Notes 1 note

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

result will be
Hello World! Beautiful Day!
To Top