1
|
|
|
<?php |
|
|
|
|
2
|
|
|
/** |
3
|
|
|
* Fast track cache, read entries from the cache before processing image |
4
|
|
|
* the ordinary way. |
5
|
|
|
*/ |
6
|
|
|
// Include debug functions |
7
|
|
|
function debug1($msg) |
|
|
|
|
8
|
|
|
{ |
9
|
|
|
$file = "/tmp/cimage"; |
10
|
|
|
if (!is_writable($file)) { |
11
|
|
|
return; |
12
|
|
|
} |
13
|
|
|
$msg .= ":" . count(get_included_files()); |
14
|
|
|
$msg .= ":" . round(memory_get_peak_usage()/1024/1024, 3) . "MB"; |
15
|
|
|
$msg .= ":" . (string) round((microtime(true) - $_SERVER['REQUEST_TIME_FLOAT']), 6) . "ms"; |
16
|
|
|
file_put_contents($file, "$msg\n", FILE_APPEND); |
17
|
|
|
} |
18
|
|
|
|
19
|
|
|
|
20
|
|
|
$cachePath = __DIR__ . "/../cache/fasttrack"; |
21
|
|
|
$query = $_GET; |
22
|
|
|
|
23
|
|
|
// Remove parts from querystring that should not be part of filename |
24
|
|
|
$clear = array("nc", "no-cache"); |
25
|
|
|
foreach ($clear as $value) { |
26
|
|
|
unset($query[$value]); |
27
|
|
|
} |
28
|
|
|
|
29
|
|
|
arsort($query); |
30
|
|
|
$queryAsString = http_build_query($query); |
31
|
|
|
|
32
|
|
|
$filename = md5($queryAsString); |
33
|
|
|
$filename = "$cachePath/$filename"; |
34
|
|
|
if (is_readable($filename)) { |
35
|
|
|
$item = json_decode(file_get_contents($filename), true); |
36
|
|
|
|
37
|
|
|
if (is_readable($item["source"])) { |
38
|
|
|
foreach ($item["header"] as $value) { |
39
|
|
|
header($value); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
if (isset($_SERVER["HTTP_IF_MODIFIED_SINCE"]) |
43
|
|
|
&& strtotime($_SERVER["HTTP_IF_MODIFIED_SINCE"]) == $item["last-modified"]) { |
44
|
|
|
header("HTTP/1.0 304 Not Modified"); |
45
|
|
|
debug1("really fast track 304"); |
46
|
|
|
exit; |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
foreach ($item["header-output"] as $value) { |
50
|
|
|
header($value); |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
readfile($item["source"]); |
54
|
|
|
debug1("really fast track 200"); |
55
|
|
|
exit; |
56
|
|
|
} |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
|
60
|
|
|
// No fast track cache, proceed as usual |
61
|
|
|
include __DIR__ . "/img.php"; |
62
|
|
|
|
The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.
The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.
To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.