執行個體講解動態網頁技術PHP開發檔案系統

來源:互聯網
上載者:User

著重學習PHP中的檔案函數的應用

PHP中有許多與檔案系統有關的函數,這些函數不僅可以開啟檔案,還可以顯示目錄中的內容、移動檔案和其他一些功能,許多人甚至用PHP開發基於互連網的檔案總管。

下面的指令碼範例可以顯示一個目錄清單,注釋已經包含在代碼中:

<? /把要讀取的目錄的全路徑名存入一個名字為$dir_name的變數中。/
$dir_name = "/home/me/";
/ 建立一個控制代碼,其值是開啟一個給定目錄的結果/
$dir = opendir($dir_name);
/ 建立一個文字塊,用以放置列表元素(檔案名稱字)/
$file_list = "<ul>";
/ 使用一個while語句,讀取已經開啟的目錄中的所有元素,如果檔案的名字不是“.”或“..”,則顯示列表中的名字/
while ($file_name = readdir($dir)) {
if (($file_name != ".") &&&& ($file_name != "..")) {
$file_list .= "<li>$file_name";
}
}
$file_list .= "</ul>";
/關閉開啟的目錄,結束PHP模組/
closedir($dir);
?>
<!-- Start your HTML -->
<HTML>
<HEAD>
<TITLE>Directory Listing</TITLE>
</HEAD>
<BODY>
<!-- Use PHP to print the name of the directory you read -->
<P>Files in: <? echo "$dir_name"; ?></p>
<!-- Use PHP to print the directory listing -->
<? echo "$file_list"; ?>



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.