不少,以下表: php
指令 含义html
public 能够在任何地方缓存mysql
private 只能被浏览器缓存sql
no-cache 不能在任何地方缓存数据库
must-revalidate 缓存必须检查更新版本浏览器
proxy-revalidate 代理缓存必须检查更新版本缓存
max-age 内容可以被缓存的时期,以秒表示服务器
s-maxage 覆盖共享缓存的max-age设置函数
下面实例利用header()设置浏览器的缓存:fetch
<?php # Script 2.7 - view_tasks.php // Connect to the database: $dbc = @mysqli_connect ('localhost', 'username', 'password', 'test') OR die ('<p>Could not connect to the database!</p></body></html>'); // Get the latest dates as timestamps: $q = 'SELECT UNIX_TIMESTAMP(MAX(date_added)), UNIX_TIMESTAMP(MAX(date_completed)) FROM tasks'; $r = mysqli_query($dbc, $q); list($max_a, $max_c) = mysqli_fetch_array($r, MYSQLI_NUM); // Determine the greater timestamp: $max = ($max_a > $max_c) ? $max_a : $max_c; // Create a cache interval in seconds: $interval = 60 * 60 * 6; // 6 hours // Send the header: header ("Last-Modified: " . gmdate ('r', $max)); header ("Expires: " . gmdate ("r", ($max + $interval))); header ("Cache-Control: max-age=$interval"); ?>
1.链接数据库后获取数据表中最新的日期值date_added,date_completed,用UNIX_TIMESTAMP()函数将返回值转化为整数而后获取最大值赋予$max。
2.定义一个合理缓存时间。
$interval=60*60*6
合理值屈居于页面自己、访问者的数量和页面的更新频率,以上代码为6个小时
3.发送Last-Modified头标。
header("Last-Modified:".gmdate("r",($max+$interval)));
gmdate()函数使用了参数"r"时,会根据HTTP规范返回相应的日期格式。
4.设置Expires头标。
header ("Expires: " . gmdate ("r", ($max + $interval)));
5.设置Cache_Control头标。
header ("Cache-Control: max-age=$interval");