Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我使用 PHP 创建一个 cookie:
setcookie('pctlang',$setlocale,time()+3600*24*365,'/');
从 domain.com,我的用户也可以使用 www.domain.com 访问我的网站,但在该 URL 中,在 domain.com 中创建的 cookie 无法访问。
有没有办法解决这个问题?
尝试这个
setcookie('pctlang',$setlocale,time()+3600*24*365,'/',".domain.com");