php 数组转为字符串 或者字符串转为数组

1-数组转为字符串

$array=["php","Java","web"];
$result=implode(",",$array);

2-字符串转为数组

$str="php,java,web";
$rsult=explode(',',$str);

更多的功能和插件  地址:https://www.kancloud.cn/he_he/thinkphp5

    原文作者:qq_37138818
    原文地址: https://blog.csdn.net/qq_37138818/article/details/81094696
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞