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.
是否可以在脚本开始时设置一次路径和域并让所有未来的集合都符合相同?
从文档:
bool setcookie ( string $name [, string $value [, int $expire = 0 [, string $path [, string $domain [, bool $secure = false [, bool $httponly = false ]]]]]] )
当然:
function own_setcookie($name, $value, $expire=0) { setcookie($name, $value , $expire, 'myPath', 'myDomain'); }
然后使用:
own_setcookie('myName', 'myValue');