Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:23179 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 31330 invoked by uid 1010); 7 May 2006 15:09:09 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 31315 invoked from network); 7 May 2006 15:09:09 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 7 May 2006 15:09:09 -0000 X-Host-Fingerprint: 217.79.190.163 r163.red.fastwebserver.de Received: from ([217.79.190.163:25036] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id EB/F2-63443-49D0E544 for ; Sun, 07 May 2006 11:09:08 -0400 To: internals@lists.php.net,rasmus@lerdorf.com (Rasmus Lerdorf) Date: Sun, 7 May 2006 17:08:58 +0200 Message-ID: <20060507170858.2abfff57@localhost.localdomain> In-Reply-To: <445E0BEF.1080403@lerdorf.com> References: <6E5468C5-630C-48B8-A501-6FC874651D01@prohost.org> <445D8156.8090701@lerdorf.com> <506DE35B-1925-4DA7-8F9F-F23F7D77EE87@prohost.org> <445E0BEF.1080403@lerdorf.com> Reply-To: pierre.php@gmail.com X-Newsreader: Sylpheed-Claws 2.1.0 (GTK+ 2.8.6; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Posted-By: 217.79.190.163 Subject: Re: [PHP-DEV] PHP 5.2 Branched From: pierre.php@gmail.com (Pierre) On Sun, 07 May 2006 08:02:07 -0700 rasmus@lerdorf.com (Rasmus Lerdorf) wrote: > Ilia Alshanetsky wrote: > > I am +0 on these two extensions, hence the "to be discussed", as > > long as they are not enabled by default I see no problem with > > symlinking them in. > > I'd like to see the json extension enabled by default. It's a > trivially small extension with no external deps and pretty much > required for modern Web apps. > > And I think the filter extension should be enabled as well, but > without the default filter turned on to make the filtering functions > available. I also like to have it enabled by default and without default filter. In case some of you never tested pecl/filter, the default filter is a SAPI filter. It filters each inputs and replaces the raw values by the filtered values in all superglobals, like _POST/_GET. Enable it by default now will break every applications, as soon as it is set to something else than raw. STRING is the default mode (remove every tags, new lines, special chars,...). -- Pierre