标签: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