我想json_decode()
目录中的所有文件并使用他们的数据。
<?php
$dir = "../mynotes";
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
if($file != ".." && $file != "..." && $file != "."){
$fileContent = @file_get_contents("../mynotes/".$file);
$mynote = json_decode($fileContent,true);
print_r($mynote);
}
}
closedir($dh);
}
}
?>
当我想要echo $mynote['id];
时,它会返回我:
警告:非法字符串偏移'id'
你能帮帮我吗?
编辑: 我知道了。 Solution