我怎么做?有没有kohana 3提供的方法?
要删除目录和所有这些内容,您必须编写一些递归删除功能 – 或使用已存在的功能.
原文链接:https://www.f2er.com/php/137980.html您可以在rmdir的文档页面上的用户注释中找到一些示例;例如,这是2009年8月的the one proposed by bcairns(引用):
<?PHP // ensure $dir ends with a slash function delTree($dir) { $files = glob( $dir . '*',GLOB_MARK ); foreach( $files as $file ){ if( substr( $file,-1 ) == '/' ) delTree( $file ); else unlink( $file ); } rmdir( $dir ); } ?>