explode()
explode()
是字符串分割函数
格式
array explode ( string $delimiter , string $string [, int $limit = PHP_INT_MAX ] )
返回一个全是字符串的数组
// 琼台博客 www.qttc.net
$str = "Hello world. here is qttc.";
print_r (explode(" ",$str));
implode()
implode()
是连接字符串函数
格式
string implode ( string $glue , array $pieces )
例子
// 琼台博客 www.qttc.net
$arr = array("Hello", "QTTC!");
echo implode(" ",$arr);
这两个函数使用都挺简单的,使用频率很高