Rumah >pembangunan bahagian belakang >tutorial php >请教如何获取fastcgi缓存的key
nginx.conf中设置的fastcgi缓存的key如下
<code>fastcgi_cache_key $request_method://$host$request_uri; </code>
举例,有这么一个URL
http://levi.cg.am/archives/3066
请问如何用PHP得到缓存的文件名称
备注:
我试过这么写,但是不对
md5('http://levi.cg.am/archives/3066');
nginx.conf中设置的fastcgi缓存的key如下
<code>fastcgi_cache_key $request_method://$host$request_uri; </code>
举例,有这么一个URL
http://levi.cg.am/archives/3066
请问如何用PHP得到缓存的文件名称
备注:
我试过这么写,但是不对
md5('http://levi.cg.am/archives/3066');
用echo 模块调试变量