VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php递归删除目录所有文件

  1. <meta http-equiv="content-type" content="text/html; charset=gb2312"
  2. <?php 
  3. function tree($directory)  
  4. {  
  5. $mydir=dir($directory);  
  6. echo "<ul> ";  
  7. while($file=$mydir->read()){  
  8. if((is_dir("$directory/$file")) and ($file!="."and ($file!=".."))  
  9. {echo "<li><font color="#ff00cc"><b>$file</b></font></li> ";  
  10. tree("$directory/$file");  
  11. }  
  12. else{//开源代码phpfensi.com 
  13.     $a = explode('.',$file); 
  14.     if($a[1] == 'html' || $a[1] == 'htm'
  15.    { 
  16.         //unlink($file); 
  17.             echo "<li>$file</li> ";  
  18.         }     
  19.     
  20.  
  21. }  
  22. echo "</ul> ";  
  23. $mydir->close();  
  24. }  
  25. //开始运行 
  26.  
  27. echo "<h2>目录为粉红色</h2><br> ";  
  28. tree("./");  
  29. ?> 
出处:http://www.phpfensi.com/php/20140815/4266.html

相关教程