2 require_once 'portabilityLayer.php';
4 if (!sys_get_temp_dir()) {
5 echo "FAIL: No temp dir was returned.\n";
9 $tmpFile = sys_get_temp_dir() . "/" . $_GET['filename'];
11 $stat = stat($tmpFile);
13 echo "FAIL: stat() call failed.\n";
17 $mtime = $stat['mtime'] +
2;
19 if (!touch($tmpFile, $mtime)) {
20 echo "FAIL: touch() call failed.\n";