-1

是否可以在脚本开始时设置一次路径和域并让所有未来的集合都符合相同?

从文档:

 bool setcookie ( string $name [, string $value [, int $expire = 0 [, string $path [, string $domain [, bool $secure = false [, bool $httponly = false ]]]]]] )
4

1 回答 1

1

当然:

function own_setcookie($name, $value, $expire=0) {
    setcookie($name, $value , $expire, 'myPath', 'myDomain');
}

然后使用:

own_setcookie('myName', 'myValue');
于 2013-02-12T02:19:56.327 回答