(PHP 3, PHP 4 )
string implode (string glue, array pieces)
string implode
すべての配列要素の順序を変えずに、各要素間に glue文字列をはさんで 1 つの文字列にして返し ます。
例 1. implode()の例
$colon_separated = implode (":", $array);
explode(), join(), split()も参照下さい。