<?php
$dir = "/etc/php5/";
// 判斷是否為目錄
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
if (strpos( $file2, '.php') ){ //只過讀取出php 的檔案
echo "filename: $file : filetype: " . filetype($dir . $file) . "\n";
}
}
closedir($dh);
}
}
?>
沒有留言:
張貼留言