在php中使用Web开发时,我已经在我的.php文件中的某处进行了检查
AbcController.php
if(isset($_COOKIE['auth'])){
//server side logging code
//...some code here
但是fetching the Access logs for AbcController.php with 'auth' cookie
设置(grep' auth')时,服务器端计数与访问日志计数不同。
请帮助我,因为这是我无法弄清楚的。
(Access Log Count > Server side log count)
编辑:服务器端日志记录在文件级别完成。访问日志显示我们正在讨论的标题中的cookie。
答案 0 :(得分:0)
您是否尝试在块中放置echo
语句以查看是否实际访问了日志记录代码?
isset用于变量,但您应该使用array_key_exists来检查auth
数组中的$_COOKIE
是否为密钥。