Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:96516 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 56632 invoked from network); 20 Oct 2016 11:30:25 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 20 Oct 2016 11:30:25 -0000 Authentication-Results: pb1.pair.com header.from=yohgaki@ohgaki.net; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=yohgaki@ohgaki.net; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain ohgaki.net designates 180.42.98.130 as permitted sender) X-PHP-List-Original-Sender: yohgaki@ohgaki.net X-Host-Fingerprint: 180.42.98.130 ns1.es-i.jp Received: from [180.42.98.130] ([180.42.98.130:46308] helo=es-i.jp) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 24/E5-24564-FCAA8085 for ; Thu, 20 Oct 2016 07:30:25 -0400 Received: (qmail 17071 invoked by uid 89); 20 Oct 2016 11:30:20 -0000 Received: from unknown (HELO mail-qk0-f180.google.com) (yohgaki@ohgaki.net@209.85.220.180) by 0 with ESMTPA; 20 Oct 2016 11:30:20 -0000 Received: by mail-qk0-f180.google.com with SMTP id z190so87751137qkc.2 for ; Thu, 20 Oct 2016 04:30:20 -0700 (PDT) X-Gm-Message-State: ABUngvdemduMBTbjfKAoGavfErJBU5bs3J0Qs3Dck7H3krzrBWoTDgwjx+UL9RBCivXhn+Lr6IazW7XjaaK3pQ== X-Received: by 10.55.121.133 with SMTP id u127mr187138qkc.233.1476963014494; Thu, 20 Oct 2016 04:30:14 -0700 (PDT) MIME-Version: 1.0 Received: by 10.140.22.38 with HTTP; Thu, 20 Oct 2016 04:29:33 -0700 (PDT) In-Reply-To: References: <1eab7492-596c-ffd2-81ed-0eb9256a033e@gmail.com> <0B722A15-A29F-498B-987F-F6BA5AA49EEF@bobs-bits.com> <59D6B40B-DC64-43A3-AED4-CD5C9C15B6BA@koalephant.com> Date: Thu, 20 Oct 2016 20:29:33 +0900 X-Gmail-Original-Message-ID: Message-ID: To: Niklas Keller Cc: Stephen Reay , Stanislav Malyshev , "internals@lists.php.net" , Davey Shafik , Xinchen Hui Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] header() removes all header of the same name. From: yohgaki@ohgaki.net (Yasuo Ohgaki) Hi Niklas, On Thu, Oct 20, 2016 at 7:39 PM, Niklas Keller wrote: > 016-10-20 11:57 GMT+02:00 Yasuo Ohgaki : >> >> Hi Niklas, >> >> On Thu, Oct 20, 2016 at 6:01 PM, Niklas Keller wrote: >> > >> > same here, it's not acceptable to limit header and restrict >> > `set_cookie`. >> > Just think about all those frameworks that would have to specialcase >> > setting >> > headers now and have to use the cookie API then. >> > >> > If you want to protect the session cookie header, why not simply set it >> > right before the first output? That'd make it also non-overrideable, but >> > leaves header() intact. But I guess it's harder to implement. >> >> Although, I prefer to have completely separate API, we have to >> implement vote result. So vote no for "Disabling 'Set-Cookie' for >> header*()" vote option. > > > I don't have a vote. But this breaks BC. It might remove surprisings when > using sessions, but having header() not being able to set `set-cookie` > headers adds new surprisings. That's why we have minor releases and document. Besides, I noted "add API 7.x, disallow header('Set-Cookie') by 8.0". There are years to prepare for the change even if we decide to do so. > >> >> Regarding about delaying session cookie header, it is possible to use >> output buffer to delay output so that session module can send HTTP >> header at request shutdown. However, it will break almost all session >> enabled applications that require immediate output. Therefore, it's >> easy to implement, but not possible for this reason. > > > I meant squeeze in right before output or on first flush() call. There must > be a thing that sets a "already output" flag that prevents further headers. > We could use that mechanism to buffer all headers and just send them out > there and have a hook for the session module. The reason why I think of this new API proposal is to remove core(main/SAPI.c) dependency to session. Your idea requires the dependency (main/SAPI.c) like my the other proposal. Technically, it's possible and it can be simpler by detecting and preventing session ID deletion/modification. Regards, -- Yasuo Ohgaki yohgaki@ohgaki.net