PHP 读取 xxx.json 文件, 并将内容以 table 表格形式输出到浏览器

echo '';
    
$file = array("./fb_pages_json/01.json", "./fb_pages_json/02.json", "./fb_pages_json/03.json");
//print_r($decode_data);
for($k=0; $k<3;$k++) {
    $json_data = file_get_contents($file[$k]);
    $decode_data = json_decode($json_data, true);
    for ($i=0; $i';
    }
}
echo '
id name is_new_page
'.$id.''.$name.''.$is_new_page.'
';

你可能感兴趣的:(phpjson)