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);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 python 怎么连接 SQLITE3
  • ¥20 创建taro项目,在vscode上能够写跨平台写微信小程序代码
  • ¥15 网站出现错误跳转问题
  • ¥15 Docker容器里已经安装了ssh,但打包迁移到新机器一直容器一直提示unrecognized service。
  • ¥15 综合布线实例设计,就好看好看不恐怖可好滤镜好聚
  • ¥15 使用moviepy库视频合并时出错
  • ¥30 FLUENT液固传质UDF
  • ¥15 怎么看梯度直方图以,怎么判断梯度消失/爆炸,怎么解决
  • ¥15 aspnetdll文件访问拒绝
  • ¥15 wpf中在模版中寻找元素