Can cookies sent by PHP be disabl开发者_运维技巧ed from server?
Yes, they can. You can do this using .htaccess
by setting the following values:
Header unset Cookie
Header unset Set-Cookie
Please note that if the server has sent cookies to a browser in the past, then the browser might still be sending back cookies to the server.
精彩评论