Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 4th, 2012  |  syntax: None  |  size: 0.28 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.         echo "clear the cache...";
  2.         $cache =  __DIR__ . "/cache/";
  3.  
  4.         echo "Cache Folder " . $cache . "<br/>";
  5.        
  6.         $handle = opendir($cache);
  7.        
  8.         while (false !== ($entry = readdir($handle))) {
  9.                 if ($entry != "." && $entry != "..") {
  10.                         unlink($entry);
  11.                 }
  12.         }
  13.         closedir($handle);