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

字符串转二维数组

时间:2018-04-16 11:04:16      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:color   turn   style   函数   ret   逗号   div   col   str   

        function strToArr(str,fg1,fg2){
            var temp = str.split(fg1),
                arr = [];
            for(var i = 0;i < temp.length;i++){
                arr[i] = temp[i].split(fg2);
            }
                return arr;
        }
                        /*实现数组转成字符串*/
                function arr_to_str($arr){    
                    foreach ($arr as $v){    
                        $v = join("-",$v); //可以用implode将一维数组转换为用逗号连接的字符串,join是别名    
                        $temp[] = $v;    
                    }    
                    foreach($temp as $v){    
                        $t.=$v."-";    
                    }    
                    $t=substr($t,0,-1);  //利用字符串截取函数消除最后一个逗号    
                    return $t;    
                } 

 

字符串转二维数组

标签:color   turn   style   函数   ret   逗号   div   col   str   

原文地址:https://www.cnblogs.com/loveMis/p/8854466.html

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