このコードを使用してjson
オブジェクトを作成しました
if(mysql_num_rows($result)) {
while($document = mysql_fetch_assoc($result)) {
$documents[] = $document;
}
}
header('Content-type: application/json');
echo json_encode(array('documents'=>$documents));
このようなドキュメントで単一のjsonを提供します
{"document":[{"document":{"id":"2","name":"test","pages":"name","img":"path","lines":"data"}]}
しかし、私は必要です
{"document":[{"document":{"id":"2","name":"test",pages":[{"img":"first img","lines":" <p>first line"}],pages":[{"img":"second img","lines":" <p>second line"}]}]}
既存の json の手段には、さらに img と行を含む別の json 名ページが必要です。それはどのようにできますか?