-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathuse-cache.php
87 lines (67 loc) · 1.3 KB
/
use-cache.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
/**
* 演示文件
*
* #注# 此文件仅做功能演示使用,
* 因未做任何数据验证等功能,
* 切不可直接放到线上使用
*
* Created by PhpStorm.
* User: jerry
* Date: 16/5/7
* Time: 16:08
*/
require "../vendor/autoload.php";
$favicon = new \Jerrybendy\Favicon\Favicon;
/**
* 检测URL参数
*/
$url = $_GET['url'];
/*
* 格式化 URL, 并尝试读取缓存
*/
$formatUrl = $favicon->formatUrl($url);
if (Cache::get($formatUrl) !== NULL) {
foreach ($favicon->getHeader() as $header) {
@header($header);
}
echo Cache::get($formatUrl);
exit;
}
/**
* 缓存中没有指定的内容时, 重新获取内容并缓存起来
*/
$content = $favicon->getFavicon($formatUrl, TRUE);
Cache::set($formatUrl, $content, 86400);
foreach ($favicon->getHeader() as $header) {
@header($header);
}
echo $content;
exit;
/**
* 定义一个虚拟的缓存类,
* 请自行实现缓存方法
*/
class Cache
{
/**
* 获取缓存的值, 不存在时返回 null
*
* @param $key
* @return string
*/
public static function get($key)
{
return null;
}
/**
* 设置缓存
*
* @param $key
* @param $value
* @param $expire
*/
public static function set($key, $value, $expire)
{
}
}