PHP遍历当前目录下json文件,并显示其中的指定内容。

2024-10-31 23:47:03
推荐回答(1个)
回答(1):

header('Content-type:text/html;charset=utf-8');
$i = 1;
foreach(glob('*.json') as $txt)
{
echo '第'.$i.'个文件'.basename($txt).':';
$arr=json_decode(file_get_contents($txt),true);
echo $arr[0]." ".$arr[1]." ".$arr[2]." ";
$i++;
echo '


';
}