我可以使用以下代码列出json中文件夹中的所有图像:
<?php
$dir = "images/friday/";
$images = glob($dir."*.jpg");
foreach($images as $image){
$registro = array(
"FILE" => $image
);
$retorno[] = $registro;
}
$retorno = json_encode($retorno);
echo $retorno;
?>
我认为它也适用于目录但如果我不使用print_r($ dirs)则不会显示任何内容。
<?php
$path = "images";
$dirs = glob($path . "/*", GLOB_ONLYDIR);
foreach($dirs as $dir){
$reg = array(
"FOLDER" => $dir
);
$return[] = $reg;
}
$return = json_encode($return);
echo $return;
?>
echo $ return 不会显示任何内容。是否有一个简单的解决方法,或者我必须构建类似function的内容?我需要“FOLDER”标识符。