{
"books":[
{
"email":"test@test.te",
"author":"John Name",
"created":"2017-03-24 10:41:21"
},
{
"email":"test@test.te",
"author":"John Name",
"created":"2017-03-24 10:41:21"
},
{
"email":"test@test.te",
"author":"John Name",
"created":"2017-03-24 10:41:21"
}
]
}
$json = json_decode(file_get_contents('book.json'), true);
$json['books'][] = [
'email' => 'foo',
'author' => 'bar',
'created' => '42',
];
file_put_contents('book.json', json_encode($json));