使用 PHP,如何从“文本”标签中获取每个值?
这是我的 json 文件:
[{"number":1,"pages":33,"height":1188,"width":918,"fonts":[],
"text":[[108,108,23,21,2,"Some Text 1"],[108,131,6,21,2,"Some Text 2.."],[108,154,6,21,2,"Some Text 3.. "]]}]
到目前为止,这是我的 PHP,
$data = json_decode(file_get_contents('file.json'));
$object = array();
foreach($data as $index=>$object) {
foreach($object as $name=>$value) {
//$output[$name][$index] = $value;
echo $output[text][0];
// .........
echo $output[text][5];
}
}
谢谢