我已经使用此代码制作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 名称页面。它可以怎么做?