当前位置:首页 > PHP教程 > php函数 > 列表

目录递归循环php代码

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-27 13:26:53 浏览: 评论:0 
这是一款从代码和速度上还不错的php目录遍历代码,有需要的朋友可以参考一下。
 
  1. $path = '..';  
  2. function get_filetree($path){  
  3. $tree = array();  
  4. foreach(glob($path.'/*'as $single){  
  5. if(is_dir($single)){  
  6. $tree = array_merge($tree,get_filetree($single));  
  7. }  
  8. else{  
  9. $tree[] = $single;  
  10. }  
  11. }  
  12. return $tree;  
  13. }  
  14. print_r(get_filetree($path)); 

Tags: 目录 递归 循环

分享到: