0

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]}];
3
  • 1
    So you just want to explode the innerArrays by commas? Commented Feb 25, 2015 at 3:36
  • something like that, but the result will be [string,int] Commented Feb 25, 2015 at 3:39
  • I do not see any integers among the data of input array. Please, add var_export of your input data Commented Feb 25, 2015 at 3:40

1 Answer 1

2

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);
Sign up to request clarification or add additional context in comments.

2 Comments

what i want for the result is [['2', 2],['2', 59]]
can you help me once again, 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]}];

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.