php遍历目录viewDir函数
作者:bea
代码如下: <?php /** * 遍历目录,找出目录下某个后缀名的所有文件 * */ function viewDir ($directory, $ext) { if (is_dir($directory)) { $handle = opendir($directory); while ($file = readdir($handle)){ $subdir = $directory . '/' .$file; if ($file != '.' &
代码如下:
<?php
/**
* 遍历目录,找出目录下某个后缀名的所有文件
* */
function viewDir ($directory, $ext) {
if (is_dir($directory)) {
$handle = opendir($directory);
while ($file = readdir($handle)){
$subdir = $directory . '/' .$file;
if ($file != '.' && $file !='..' && is_dir($subdir)){
viewDir($subdir,$ext);
} else if( $file != '.' && $file != '..') {
$fileInfo = pathinfo($subdir);
$fileExt = $fileInfo['extension'];
if ($fileExt == $ext){
echo $directory.'/'.$file.'<br />';
}
}
}
closedir($handle);
}
}
viewDir('E:www est','php');
?>
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- php 文章采集正则代码
- PHP array_push 数组函数
- PHP simple_html_dom.php+正则 采集文章代码
- 在PHP中检查PHP文件是否有语法错误的方法
- php 常用类整理
- PHP 源代码压缩小工具
- php 8小时时间差的解决方法小结
- PHP 分页原理分析,大家可以看看
- c#中的实现php中的preg_replace
- php 空格,换行,跳格使用说明
- PHP 抓取新浪读书频道的小说并生成txt电子书的代码
- PHP strtotime函数详解
- php 日期时间处理函数小结
- php 计算两个时间戳相隔的时间的函数(小时)
- php 来访国内外IP判断代码并实现页面跳转
- php jquery 实现新闻标签分类与无刷新分页
- PHP XML操作类DOMDocument
- PHP下编码转换函数mb_convert_encoding与iconv的使用说明
- PHP 基本语法格式