php到json获取文件夹和子文件夹文件

时间:2018-03-29 10:28:33

标签: php json

我是PHP的新手,我正在尝试编写一个脚本,以递归方式获取根文件夹和子文件夹并返回一个JSON数组。但是使用此代码它只返回文件,不显示根文件夹,子文件夹和文件。

我拥有的是这个

<?php
  $files = array();

  $dir = opendir('/opt/');
  while ($file = readdir($dir)) {
      if ($file == '.' || $file == '..')
      {
          continue;
      }

      $files[] = $file;
   }

   echo json_encode($files);
?>

0 个答案:

没有答案