Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to create this JSON string with PHP:

[{name:'20140722.1304',data:[[0, 0.224],[0, 0.228]] }, {name:'20140729.1149',data:[[1, 0.224],[1,0.228]] }]

My current attempt:

$jsonArray = array(
    'name' => '20140722.1304'
   ,'data' => array('0' => '0.024', '1'=> '0.028')
);

$jsonValue = json_encode($jsonArray);
echo $jsonValue;

But this code's output looks like:

{"name":"20140722.1304","data":["0.024","0.028"]}

Where did I went wrong? What do I have to change in my code to get to my expected output?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
297 views
Welcome To Ask or Share your Answers For Others

1 Answer

I finally got you to tell us what you want in the comments; please be up-front with this in the future. The expected output you gave differed from your actual output in so many ways that it was impossible to tell what you actually thought the problem was, but:

I want to get the output as {name:'20140722.1304',data:[[0, 0.224],[0, 0.228]]}

At this point, the only difference I can see is that your data is a nested array in your expected output, but not your actual output.

That has nothing to do with JSON. You're just not building your input array correctly.

Try json-encoding this:

$jsonArray = array(
    'name' => '20140722.1304'
   ,'data' => array(array(0, 0.024), array(0, 0.028))
);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...