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

将数组转化为json字符串(不使用json_encode函数)

时间:2018-09-02 12:28:20      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:reac   public   使用   div   bst   return   ons   key   code   

将数组转化为json字符串(不使用json_encode函数)

 1     public function arrayToJson($arr,$jsonStr=‘‘){
 2         $jsonStr.=‘{‘;
 3         foreach ($arr as $key => $value) {
 4             if(is_array($value)){
 5                 $jsonStr=$this->arrayToJson($value,$jsonStr.‘"‘.$key.‘":‘).‘,‘;
 6             }else{
 7                 $jsonStr.=‘"‘.$key.‘":"‘.$value.‘",‘;
 8             }
 9         }
10         $jsonStr=substr($jsonStr,0,-1).‘}‘;
11         return $jsonStr;
12     }

 

将数组转化为json字符串(不使用json_encode函数)

标签:reac   public   使用   div   bst   return   ons   key   code   

原文地址:https://www.cnblogs.com/mudaoyuye/p/9573322.html

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