我是PHP的新手,我正在尝试编写一个脚本,以递归方式获取根文件夹和子文件夹并返回一个JSON数组。但是使用此代码它只返回文件,不显示根文件夹,子文件夹和文件。
我拥有的是这个
<?php
$files = array();
$dir = opendir('/opt/');
while ($file = readdir($dir)) {
if ($file == '.' || $file == '..')
{
continue;
}
$files[] = $file;
}
echo json_encode($files);
?>