Lines Matching refs:fileglob
25 function rmeverything_cache($fileglob, $basedir, $params, $time_older) { argument
28 $fileglob2 = substr($fileglob, strlen($basedir));
29 if (strpos($fileglob, '*') !== false) {
30 foreach (glob($fileglob) as $filename) {
33 } else if (is_file($fileglob)) {
36 if (strcmp($basedir, dirname($fileglob)) == 0) {
54 if (@unlink($fileglob)) {
60 } else if (is_dir($fileglob)) {
61 $ok = rmeverything_cache($fileglob.'/*', $basedir, $params, $time_older);
63 if (strcmp($fileglob, $basedir) == 0) return true;
64 if (@rmdir($fileglob)) {
80 function removelock($fileglob, $basedir, $time_older) { argument
84 $fileglob2 = substr($fileglob, strlen($basedir));
85 if (strpos($fileglob, '*') !== false) {
86 foreach (glob($fileglob) as $filename) {
89 } else if (is_file($fileglob)) {
93 if (@filemtime($fileglob) > $time_older) return true;
94 if (@unlink($fileglob)) {
100 } else if (is_dir($fileglob)) {
101 $ok = removelock($fileglob.'/*', $basedir, $time_older);
103 if (strcmp($fileglob, $basedir) == 0) return true;
104 if (@rmdir($fileglob)) {