关键词:implode,explode ,php



implode,explode是常用的将数组和字符串之间转换的函数



implode 将数组以一个字符连接成字符串



举例说明:

$sam = array('test1', 'test2', 'test3');

$re = implode(",", $sam);

echo $re ; //test1test2test3

explode 使用一个字符串分割另一个字符串

$sam = array('test1', 'test2', 'test3');

$re = iexplode(",", $sam);

print_r $re ; //输出数组 test1,test2,test3