Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
300 views
in Technique[技术] by (71.8m points)

php - How can I create a specific JSON string?

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

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

1 Reply

0 votes
by (71.8m points)

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))
);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...