mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
Fixed setcookie in docs - bug report 4647
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@25460 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
ff36f6feb0
commit
49b0754244
1 changed files with 3 additions and 2 deletions
|
@ -128,10 +128,11 @@ header ("Pragma: no-cache"); // HTTP/1.0
|
|||
the cookie should be visible for.
|
||||
</simpara>
|
||||
<simpara>
|
||||
Multiple calls to <function>setcookie</function> in the same
|
||||
In PHP3, multiple calls to <function>setcookie</function> in the same
|
||||
script will be performed in reverse order. If you are trying to
|
||||
delete one cookie before inserting another you should put the
|
||||
insert before the delete.
|
||||
insert before the delete. In PHP4, multiple calls to
|
||||
<function>setcookie</function> are performed in the order called.
|
||||
</simpara>
|
||||
<para>
|
||||
Some examples follow:
|
||||
|
|
Loading…
Reference in a new issue