dscbxou1900343 2015-02-25 03:34
浏览 29
已采纳

Json_encode数组多维

I have a multidimensional array which is a combination of string and int value like this

Array ( [0] => Array ( [0] => 2,2 ) [1] => Array ( [0] => 2,59 ) )

I need to make this array become like this

[['2',   2],['2',       59]]

I using json_encode but it return

[["2,2"],["2,59"]]

I'm using this array for chart

I read from http://php.net/manual/en/function.json-encode.php but no one from json_ecode list can return like that

can someone help me? thx

can you help me once again,

    $data = new stdClass(); 
    $data->name = 'SD';
    $data->data = $totalSD;
    $data2 = new stdClass(); 
    $data2->name = 'SMP';
    $data2->data = $totalSMP;
    $list = array();
    array_push($list, $data);
    array_push($list, $data2);

I Have array like this

$a =[{"name":"SD","data":[0,0,0,0,0,0,0,0,0,0,0,0,0,17,2]},{"name":"SMP","data":[0,‌​0,0,0,0,0,0,0,0,0,0,0,0,0,0]}]; 

I need to change the array to become like this

$a =[{name:'SD',data:[0,0,0,0,0,0,0,0,0,0,0,0,0,17,2]},{name:'SMP',data:[0,0,0,0,0,‌​0,0,0,0,0,0,0,0,0,0]}];
  • 写回答

1条回答 默认 最新

  • dongzhang5787 2015-02-25 03:47
    关注

    It is do-able, using foreach() loops and exploding the string on the , delimiter.

    The below code uses the exact array you supplied above (based on the structure):

    foreach($array as $key => &$item) {
        foreach($item as $k => $data) {
            $item = explode(',', $data[0]);
        }
    }
    

    Which returns:

    [["2","2"],["2","59"]]
    

    Example


    If you need the first value as a string and the second as an int, the following should suffice:

    foreach($a as $key => &$item) {
        foreach($item as $k => $data) {
            list($string, $int) = explode(',', $data[0]);
            $item = array(strval($string), (int) $int);
        }
    }
    

    It harnesses the use of strval() to cast the first value as a string and we cast the second value as an int via the (int) loose-typing in PHP.

    Which returns:

    [["2", 2],["2", 59]]
    

    Example


    A Quick Note

    I've used by-reference in the foreach to modify the original array. So basically, you'll fetch your data, run the foreach loops to modify it as you need and then you'll encode it. This is a pseudo example of how that process would go:

    ARRAY = Get.ARRAY
    
    FOREACH ( ARRAY AS KEY => &VAL) {
        FOREACH (VAL AS KEY => VALUE) {
            LIST(FIRST_ITEM, LAST_ITEM) = EXPLODE(',', VALUE);
            VALUE = ARRAY ( strval(FIRST_ITEM), (int) LAST_ITEM );
        }
    }
    
    ECHO json_encode(ARRAY);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求TYPCE母转母转接头24PIN线路板图
  • ¥100 国外网络搭建,有偿交流
  • ¥15 高价求中通快递查询接口
  • ¥15 解决一个加好友限制问题 或者有好的方案
  • ¥15 急matlab编程仿真二阶震荡系统
  • ¥20 TEC-9的数据通路实验
  • ¥15 ue5 .3之前好好的现在只要是激活关卡就会崩溃
  • ¥50 MATLAB实现圆柱体容器内球形颗粒堆积
  • ¥15 python如何将动态的多个子列表,拼接后进行集合的交集
  • ¥20 vitis-ai量化基于pytorch框架下的yolov5模型