码迷,mamicode.com
首页 > 编程语言 > 详细

PHP将数组转字符串

时间:2019-11-13 16:04:59      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:lod   string   imp   nbsp   div   dump   ring   数组   bsp   

implode(‘,‘,$arr)
//将数组转字符串
$arr = [
            ‘a‘=>1,
            ‘b‘=>2,
            ‘c‘=>3,
        ];
$arr_string = implode(‘,‘,$arr);
dump($arr_string);

//打印为  string(5) "1,2,3"

 

PHP将数组转字符串

标签:lod   string   imp   nbsp   div   dump   ring   数组   bsp   

原文地址:https://www.cnblogs.com/camg/p/11850003.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!