function rrmdir($dir) {
if (is_dir($dir)) {
$objects = scandir($dir);
foreach ($objects as $object) {
if ($object != "." && $object != "..") {
if (filetype($dir."/".$object) == "dir") rrmdir($dir."/".$object); else unlink($dir."/".$object);
}
}
reset($objects);
rmdir($dir);
}
}
php
<iframe width="100%" height="398" src="http://snipet.teknotit.com/index.php?embed=54665037e4c84" type="text/html"></iframe>
Texte seul - Permalink - Snippet public posté le 14/11/2014