91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP中怎么操作文件與目錄

發布時間:2021-06-23 16:55:26 來源:億速云 閱讀:119 作者:Leah 欄目:開發技術

PHP中怎么操作文件與目錄,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

文件目錄相關函數

<?php
// 輸出目錄中的文件
function outputcurfiles ($allowedtypes, $thedir){
//首先,我們確保目錄存在。
if (is_dir ($thedir)){
 //現在,我們使用scandir掃描目錄中的文件。
 $scanarray = scandir ($thedir);
 //接著我們開始解析數組。
 //scandir()用“.”和“..”統計文件導航列表
 //因此作為文件,我們不應該列出他們。
 for ($i = 0; $i < count ($scanarray); $i++){
  if ($scanarray[$i] != "." && $scanarray[$i] != ".."){
   //現在,進行檢查,以確保這是一個文件,而不是一個目錄。
   if (is_file ($thedir . "/" . $scanarray[$i])){
    //現在,因為我們將允許客戶端編輯這個文件,
    //我們必須檢查它是否是可讀和可寫。
    if (is_writable ($thedir. "/" . $scanarray[$i]) &&  is_readable($thedir . "/" . $scanarray[$i])){
     //現在,我們檢查文件類型是否存在于允許的類型數組中.
     $thepath = pathinfo ($thedir . "/" . $scanarray[$i]);
     if (in_array ($thepath['extension'], $allowedtypes)){
      //如果文件符合規定,我們可以繼續輸出.
      echo $scanarray[$i] . "<br />";
     }
    }
   }
  }
 }
} else {
 echo "對不起,這個目錄不存在.";
}
}
$allowedtypes = array ("txt","html");
outputcurfiles ($allowedtypes, "testfolder");
///////////////////////////////////////////////////
function recurdir ($thedir) {
  //First attempt to open the directory.
  try {
    if ($adir = opendir ($thedir)){
      //掃描目錄。
      while (false !== ($anitem = readdir ($adir))){
        //不統計目錄中包含“.”或“..”的情況
        if ($anitem != "." && $anitem != ".."){
          //此時如果是一個目錄,則縮進一點
          //再去遞歸
          if (is_dir ($thedir . "/" . $anitem)){
            ?><span  mce_><?php echo $anitem; ?></span><?php
            ?><div  mce_><?php
            recurdir ($thedir . "/" . $anitem );
            ?></div><?php
          } elseif (is_file ($thedir . "/" . $anitem)){
            //此時輸出文件.
            echo $anitem . "<br />";
          }
        }
      }
    } else {
      throw new exception ("Sorry, directory could not be openend.");
    }
  } catch (exception $e) {
    echo $e->getmessage();
  }
}
echo "<br />/////////////////////////////////////<br /><br />";
recurdir("testfolder");
//////////////////////////////////////////////////////////////////
echo "<br />/////////////////////////////////////<br /><br />";
function sortfilesbydate ($thedir){
  //首先,需要確保目錄存在。
  if (is_dir ($thedir)){
    //接著,我們使用scandir掃描此目錄中的文件.
    $scanarray = scandir ($thedir);
    $finalarray = array();
    //然后開始解析數組
    //scandir()用“.”和“..”統計文件導航列表
    //因此作為文件,我們不應該列出他們.
    for ($i = 0; $i < count ($scanarray); $i++){
      if ($scanarray[$i] != "." && $scanarray[$i] != ".."){
        //現在,我們檢查,以確保這是一個文件,而不是一個目錄.
        if (is_file ($thedir . "/" . $scanarray[$i])){
          //現在需要做的是循環數據到一個關聯數組.
          $finalarray[$thedir . "/" . $scanarray[$i]] = filemtime ($thedir . "/" . $scanarray[$i]);
        }
      }
    }
    //至此,我們已經遍歷了整個數組,現在需要做的只是asort()它。
    asort ($finalarray);
    return ($finalarray);
  } else {
    echo "對不起,這個目錄不存在.";
  }
}
//然后,我們將函數指向我們需要查看的目錄.
$sortedarray = sortfilesbydate ("testfolder");
//至此,就可以按照如下形式輸出:
while ($element = each ($sortedarray)){
  echo "File: " . $element['key'] . " was last modified: " . date ("F j, Y h:i:s", $element['value']) . "<br />";
}
?>

關于PHP中怎么操作文件與目錄問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

南京市| 宁夏| 金乡县| 石台县| 泸溪县| 西畴县| 汾西县| 扶余县| 麻城市| 济源市| 连平县| 平原县| 五河县| 武宁县| 新乐市| 洛扎县| 济源市| 肥乡县| 高要市| 武定县| 冀州市| 芦溪县| 苍山县| 洱源县| 丰都县| 八宿县| 石渠县| 五华县| 开封县| 鹤岗市| 清水河县| 北辰区| 左云县| 马尔康县| 湘潭市| 广德县| 岳普湖县| 祁东县| 武邑县| 富宁县| 陵川县|