Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<?php if ($handle = opendir('cache/')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { unlink("cache/$file"); } } closedir($handle); } ?>
if ($file != "." && $file != ".." && file !=".htaccess") {
<?php foreach (glob("*/*.html") as $filename) { unlink ($filename); } ?>