程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php目錄遍歷函數opendir用法實例

php目錄遍歷函數opendir用法實例

編輯:PHP綜合

本文實例講述了php目錄遍歷函數opendir用法。分享給大家供大家參考。具體分析如下:

opendir()函數的作用是:打開目錄句柄,如果該函數成功運行,將返回一組目錄流(一組目錄字符串),如果失敗將返回錯誤[error],你可以在函數的最前面加上“@”來隱藏錯誤.

syntax語法:opendir(directory,context) parameter

參數:description

描述:directory required. specifies the directory to stream   

必要參數,指定目錄對象,可選參數,指定需要處理的目錄對象的context,這個context包括了一組選項,它可以對文本流的顯示方式進行改變,實例代碼如下:
復制代碼 代碼如下:<?php 
$dir = "./";
 
// open a known directory, and proceed to read its contents 
if (is_dir($dir)) 

if ($dh = opendir($dir)) { 
while (($file = readdir($dh)) !== false) { 
echo "filename: $file : filetype: " . filetype($dir . $file) . "n"."<br />"; 
}
closedir($dh); 


?>

希望本文所述對大家的PHP程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved