PHP 遍历文件功能实例

内容摘要
这篇文章主要为大家详细介绍了PHP 遍历文件功能实例,具有一定的参考价值,可以用来参考一下。

对PHP 遍历文件实现代码对此感兴趣的朋友,看看idc笔记做的技术笔记!

/**
* PHP
文章正文

这篇文章主要为大家详细介绍了PHP 遍历文件功能实例,具有一定的参考价值,可以用来参考一下。

对PHP 遍历文件实现代码对此感兴趣的朋友,看看idc笔记做的技术笔记!

/**
 * PHP 遍历文件实现代码
 *
 * @param 
 * @arrange 512-笔记网: 512pic.com
 **/
function Files($path) 
{ 
foreach(scandir($path) as $line) 
{ 
if($line=='.'||$line=='..') continue; 
if(is_dir($path.'/'.$line)) Files($path.'/'.$line); 
else echo '<li>'.$path.'/'.$line.'</li>'; 
} 
} 
/***   来自php教程(www.idcnote.com)   ***/
PHP遍历文件及文件夹 加入给定文件夹 C:\\Windows\\AppPatch 1.首先获取这个文件夹下面的所有东西,也就是文件,文件夹,放一个数组里面

/**
 * PHP 遍历文件实现代码
 *
 * @param 
 * @arrange 512-笔记网: 512pic.com
 **/
$fileArr = array( 
'files' => array(), //文件放一个数组 
'dirs' => array(), //文件夹放一个数组 
)
/***   来自php教程(www.idcnote.com)   ***/
2.如果存在子文件夹,遍历子文件夹,获取文件夹和文件,同样放进那个数组,如此循环,一个不漏 

/**
 * PHP 遍历文件实现代码
 *
 * @param 
 * @arrange 512-笔记网: 512pic.com
 **/
<?php 
$dir = 'F:\\game'; 
function read_dir_all($dir) { 
$ret = array('dirs'=>array(), 'files'=>array()); 
if ($handle = opendir($dir)) { 
while (false !== ($file = readdir($handle))) { 
if($file != '.' && $file !== '..') { 
$cur_path = $dir . DIRECTORY_SEPARATOR . $file; 
if(is_dir($cur_path)) { 
$ret['dirs'][$cur_path] = read_dir_all($cur_path); 
} else { 
$ret['files'][] = $cur_path; 
} 
} 
} 
closedir($handle); 
} 
return $ret; 
} 
$p = read_dir_all($dir); 
echo '<pre>'; 
var_dump($p); 
echo '</pre>'; 
?>
/***   来自php教程(www.idcnote.com)   ***/
php遍历一个文件夹下的所有目录及文件 在面试中我们经常遇到这个题目:php遍历一个文件夹下的所有文件和子文件夹。   这个题目有好多种解决方法。但大致思路都一样。采用递归。

/**
 * PHP 遍历文件实现代码
 *
 * @param 
 * @arrange 512-笔记网: 512pic.com
 **/
$path = './filepath'; 
function getfiles($path) 
{ 
if(!is_dir($path)) return; 
$handle = opendir($path); 
while( false !== ($file = readdir($handle))) 
{ 
if($file != '.' && $file!='..') 
{ 
$path2= $path.'/'.$file; 
if(is_dir($path2)) 
{ 
echo ' '; 
echo $file; 
getfiles($path2); 
}else 
{ 
echo ' '; 
echo $file; 
} 
} 
} 
} 
print_r( getfiles($path)); 
echo '<HR>'; 
function getdir($path) 
{ 
if(!is_dir($path)) return; 
$handle = dir($path); 
while($file=$handle->read()) 
{ 
if($file!='.' && $file!='..') 
{ 
$path2 = $path.'/'.$file; 
if(is_dir($path2)) 
{ 
echo $file."\t"; 
getdir($path2); 
}else 
{ 
echo $file.' '; 
} 
} 
} 
} 
getdir($path); 
echo '<HR>'; 
function get_dir_scandir($path){ 
$tree = array(); 
foreach(scandir($path) as $single){ 
if($single!='.' && $single!='..') 
{ 
$path2 = $path.'/'.$single; 
if(is_dir($path2)) 
{ 
echo $single."\r\n"; 
get_dir_scandir($path2); 
}else 
{ 
echo $single."\r\n"; 
} 
} 
} 
} 
get_dir_scandir($path); 
echo ' 
<HR>'; 
function get_dir_glob(){ 
$tree = array(); 
foreach(glob('./curl/*') as $single){ 
echo $single."\r\n"; 
} 
} 
get_dir_glob(); 
echo ' 
<HR>'; 
function myscandir($path) 
{ 
if(!is_dir($path)) return; 
foreach(scandir($path) as $file) 
{ 
if($file!='.' && $file!='..') 
{ 
$path2= $path.'/'.$file; 
if(is_dir($path2)) 
{ 
echo $file; 
myscandir($path2); 
}else 
{ 
echo $file.' '; 
} 
} 
} 
} 
myscandir($path); 
echo '<HR>'; 
function myglob($path) 
{ 
$path_pattern = $path.'/*'; 
foreach(glob($path_pattern) as $file) 
{ 
if(is_dir($file)) 
{ 
echo $file; 
myscandir($file); 
}else 
{ 
echo $file.' '; 
} 
} 
} 
myglob($path); 
/***   来自php教程(www.idcnote.com)   ***/

注:关于PHP 遍历文件功能实例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!