PHP技巧:PHP中几种删除目录的三种方法_PHP教程
推荐:PHP技巧:PHP脚本编程中的文件系统函数库basename: 返回不含路径的文件字符串。 chgrp: 改变文件所属的群组。 chmod: 改变文件的属性。 chown: 改变文件的拥有者。 clearstatcache: 清除文件状态快取。 copy: 复制文件。 d
1、递规法:
以下为引用的内容: deleteDir($dir) { if (rmdir($dir)==false && is_dir($dir)) { if ($dp = opendir($dir)) { while (($file=readdir($dp)) != false) { if (is_dir($file) && $file!='.' && $file!='..') { deleteDir($file); } else { unlink($file); } } closedir($dp); } else { exit('Not permission'); } } } |
2、系统调用法
以下为引用的内容: function del_dir($dir) { if(strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') { $str = "rmdir /s/q " . $dir; } else { $str = "rm -Rf " . $dir; } } |
3、循环法
以下为引用的内容: function deltree($pathdir) |
分享:PHP技巧:PHP脚本中关于拼写检查函数库aspell_new : 载入一个新的字典。 aspell_check : 检查一个单字。 aspell_check-raw : 检查一个单字,即使拼错也不改变或修正。 aspell_suggest : 检查一个单字,并提供拼写建议。
- 相关链接:
- 教程说明:
PHP教程-PHP技巧:PHP中几种删除目录的三种方法。