标签:方法 imp nbsp examples when title name 注释 pos
implode — 将一个一维数组的值转化为字符串
$glue
, array $pieces
)$pieces
)用 glue
将一维数组的值连接为一个字符串。
glue
默认为空的字符串。
pieces
你想要转换的数组。
返回一个字符串,其内容为由 glue 分割开的数组的值。
Example #1 implode() 例子
<?php
$array = array(‘lastname‘, ‘email‘, ‘phone‘);
$comma_separated = implode(",", $array);
echo $comma_separated; // lastname,email,phone
// Empty string when using an empty array:
var_dump(implode(‘hello‘, array())); // string(0) ""
?>
Note: 此函数可安全用于二进制对象。
标签:方法 imp nbsp examples when title name 注释 pos
原文地址:http://www.cnblogs.com/457248499-qq-com/p/7357301.html