如何从其他文件夹中读取文件的内部内容和数据

How to Read the inner contents and data of files from other folder

我有 html 个文件存储在一个文件夹中,现在我想读取所有文件及其内部内容、数据和结构。

我已经从文件夹中以数组的形式读取了所有文件,现在我想知道如何读取内部内容:

$this->load->helper('directory');
$dir = "review/sites";
$map = directory_map($dir);
$files = $map;
print_r($files);

要从目录中读取文件并显示文件的内部内容和结构,我们可以使用 CURL,如下所示:

$this->load->helper('directory'); //Load the directory First
$dir = "review/sites"; //Directory From where you want to read the Files
$map = directory_map($dir);
$files = $map;
   foreach($files as $file){
      $curl_handle=curl_init();
      curl_setopt($curl_handle,CURLOPT_URL,'http://localhost/traffictack/review/sites/'.$file);
      curl_setopt($curl_handle,CURLOPT_CONNECTTIMEOUT,2);
      curl_setopt($curl_handle,CURLOPT_RETURNTRANSFER,1);
           $buffer = curl_exec($curl_handle);
           curl_close($curl_handle);
             if (empty($buffer)){
                print "Nothing returned from url.<p>";
                }
                else{
                print $buffer;
                }
                }

它运行良好,目前我已经为 codeigniter 制作了这段代码。