Let's say I set a cookie using the setcookie()
function in PHP
:
setcookie('name','foo',false,'/',false);
I can see it in:
chrome://settings/cookies
However, I can not find the actual file stored on my hard disk. Can anyone tell me where this specific cookie is stored on the hard disk?
session.save_path
setting in your php.ini – Menhadenchrome://settings/cookies
is the cookies in the browser, which have no idea what cookies could possibly be stored in the server. – Upon