什么是PHP的cookie的默认生命周期? [关闭]

If I have not set any life time in cookies then what is the default life time in cookie?

for e.g

setcookie("cookiename", $value);

When you create a cookie via PHP die Default Value is 0, from the manual:

If set to 0, or omitted, the cookie will expire at the end of the session 
(when your browser closes)

Otherwise you can set the cookies lifetime in seconds as the third parameter:

http://www.php.net/manual/en/function.setcookie.php

If set to 0, or omitted, the cookie will expire at the end of the session (when the browser closes).

http://php.net/manual/en/function.setcookie.php

From the documentation:

expire

If set to 0, or omitted, the cookie will expire at the end of the session (when the browser closes).

cookies with example

If the parameter is not set, the cookie will expire at the end of the session (when the browser closes)..

When you create a cookie via PHP Default Value is 0

If set to 0, or omitted, the cookie will expire at end of the session 
ie when the browser  closes