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');