php删除非空目录代码实现
Posted 孤舟残月浅笑嫣
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php删除非空目录代码实现相关的知识,希望对你有一定的参考价值。
<?php header("Content-type: text/html; charset=utf-8"); $dir=‘mydir‘; function deldir($dir){ if(file_exists($dir)){ $files=scandir($dir); foreach($files as $file){ if($file!=‘.‘ && $file!=‘..‘){ $path=$dir.‘/‘.$file; if(is_dir($path)){ deldir($path); }else{ unlink($path); } } } rmdir($dir); return true; }else{ return false; } } if(deldir($dir)){ echo "目录删除成功!"; }else{ echo "没有目录!"; }
php的非空目录删除,其实是用递归函数实现的,php没有直接删除非空目录的函数。
以上是关于php删除非空目录代码实现的主要内容,如果未能解决你的问题,请参考以下文章
php 在Yoast SEO中更改或删除OpenGraph输出的代码片段。此代码中有多个代码段。