Problems with PHP stitching JSON

Source: Internet
Author: User
To stitch the contents of the database into JSON in the following format, ask the gods to use code to illustrate
[' Jan ', ' Feb ', ' Mar ', ' Apr ', ' may ', ' June ', ' Jul ', ' April ', ' Sep ', ' Oct ', ' Nov ', ' Dec ']

and such a format
[{            name: ' Tokyo ',            data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]        }, {            name: ' N EW York ',            data: [ -0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]        }]

The JSON format I formed when I did this was wrong
Hile ($row 2= Sybase_fetch_array ($result)) {$arr []=array ($row 2[' outdate ']);}

The spelling of the format is more "[]"


Reply to discussion (solution)

$arr []= $row 2[' outdate '];

$arr [] = $row 2[' outdate ');

Each array is a pair of []

$arr []= $row 2[' outdate '];

[{            name: ' Tokyo ',            data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]        }, {            name: ' N EW York ',            data: [ -0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]        }]

This format with JS code how to splice?

$ar = Array (    ' name ' = ' Tokyo ',    ' data ' = = Array (7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3 , 18.3, 13.9, 9.6),  ),  Array (    ' name ' = = ' New York ',    ' data ' = = Array (-0.2, 0.8, 5.7, 11.3, 17.0, 22.0 , 24.8, 24.1, 20.1, 14.1, 8.6, 2.5),)  , Echo Json_encode ($ar);
[{"Name": "Tokyo", "Data": [7,6.9,9.5,14.5,18.2,21.5,25.2,26.5,23.3,18.3,13.9,9.6]},{"name": "New York", "Data": [- 0.2,0.8,5.7,11.3,17,22,24.8,24.1,20.1,14.1,8.6,2.5]}]
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.