php如何将数组转换为以逗号分隔符连接的字符串 作者: 热心网友 发布: 2022年8月1日 3,441阅读 0评论 <?php $arr = array('东京复仇者','动漫剪辑','动漫'); echo implode(",",$arr); ?> 东京复仇者,动漫剪辑,动漫