是否可以在脚本开头设置路径和域一次并使所有未来的设置符合相同的要求?
来自文档:
bool setcookie ( string $name [, string $value [, int $expire = 0 [, string $path [, string $domain [, bool $secure = false [, bool $httponly = false ]]]]]] )
答案 0 :(得分:1)
确定:
function own_setcookie($name, $value, $expire=0) {
setcookie($name, $value , $expire, 'myPath', 'myDomain');
}
然后使用:
own_setcookie('myName', 'myValue');