|
PHP5中文手册
implode(PHP 4, PHP 5) implode — Join array elements with a string 说明
string implode
( string $glue
, array $pieces
)
Join array elements with a glue string.
参数
返回值Returns a string containing a string representation of all the array elements in the same order, with the glue string between each element. 更新日志
范例
Example#1 implode() example
<?php 注释
|