|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-02-22 14:23 UTC] jani@php.net
[2010-02-22 14:40 UTC] info at milde dot cz
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 23:00:01 2025 UTC |
Description: ------------ If setcookie is called with domain and path arguments, it does nothing. Reproduce code: --------------- print_r($_COOKIE); echo setcookie('test', 'test', time()+3600, '/', 'localhost'); Expected result: ---------------- Array ( [test] => test ) 1 Actual result: -------------- Array ( ) 1