字符串格式
信息|系统|参数|价格
以此类推目的效果是这样
信息,系统,参数,价格
$a = '信息|系统|参数|价格'; $b = implode(',',explode('|',$a)); dump($b); 结果 string '信息,系统,参数,价格' (length=27)