类以递归方式列出/删除目录中的文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类以递归方式列出/删除目录中的文件相关的知识,希望对你有一定的参考价值。
Class to list/remove recursively files into a directory
<?php /* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ /* Criado por Gabriel Francisco frc.gabriel[at]gmail.com $dir_path = caminho do diretorio que contem arquivos temporarios, cache ou qualquer coisa a ser removido */ class LimpaCache { private $dir_path; public function setDir($dir) { $this->dir_path = $dir; } public function listar() { echo "$entry </br>"; } } } public function limpar() { } } } } //$limpa = new LimpaCache; //$limpa->setDir('/tmp/teste'); //$limpa->listar(); //$limpa->limpar(); ?>
以上是关于类以递归方式列出/删除目录中的文件的主要内容,如果未能解决你的问题,请参考以下文章