My question is:
I have a mysql table: events and would like to get special formatted json_string.
id event
1 2010-01-01 00:00:00
2 2010-07-02 00:00:00
3 2011-01-04 00:00:00
4 2012-01-30 00:00:00
5 2012-03-15 00:00:00
...
I need to get json string:
{"events":[
{"2010":
{
"1":{"id":1,"event":2010-01-01 00:00:00},
"7":{"id":2,"event":2010-07-02 00:00:00}
},
},
{"2011:
{
"1":{"id":3,"event":2012-01-30 00:00:00}
},
},
{"2012:
{
"1":{"id":4,"event":2011-01-04 00:00:00},
"3":{"id":5,"event":2012-03-15 00:00:00},
},
}
]}
My code below:
$result = DB::query('SELECT id, event FROM events');
$events = array();
while($event = $result->fetch_object()) {
// the following statement won't get desired results
$events[] = $event;
}
return array(
'events' => json_encode($events);
);
How do I change my code to get the above JSON string?
Just
substr()the parts you need from the event date and use that to construct a multi-dimensional array: