<?php
$arr
=
array
(
'a'
,
'b'
'c'
'd'
'e'
);
//$s=implode($arr); //默认是以空字符合并数组元素
$s
=implode(
','
//指定以","合并数组元素
echo
;
?>