/ Published in: PHP
Class to list/remove recursively files into a directory
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?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\n</br>"; } } } public function limpar() { } } } } //$limpa = new LimpaCache; //$limpa->setDir('/tmp/teste'); //$limpa->listar(); //$limpa->limpar(); ?>
URL: https://gist.github.com/1452877