目录递归循环php代码
来源:程序员人生 发布时间:2014-01-26 20:28:13 阅读次数:3435次
这是一款从代码和速度上还不错的php目录遍历代码,有需要的朋友可以参考一下。
- $path = '..';
- function get_filetree($path){
- $tree = array();
- foreach(glob($path.'/*') as $single){
- if(is_dir($single)){
- $tree = array_merge($tree,get_filetree($single));
- }
- else{
- $tree[] = $single;
- }
- }
- return $tree;
- }
- print_r(get_filetree($path));
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠