<?php
# Крон :: очистка временной папки кэша кабинета
$od = opendir(H.'sys/cache/user_menu/');
while ($d=readdir($od)) {
if (!preg_match('#^.#', $d) and filectime(H.'sys/cache/user_menu/'.$d) < time() - 60 * 60 * 24) {
@delete_dir(H.'sys/cache/user_menu/'.$d);
}
}
closedir($od);