Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:22153 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 68796 invoked by uid 1010); 7 Mar 2006 00:12:30 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 68781 invoked from network); 7 Mar 2006 00:12:30 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 7 Mar 2006 00:12:30 -0000 X-Host-Fingerprint: 147.202.47.146 cruiser.plexpod.net Linux 2.5 (sometimes 2.4) (4) Received: from ([147.202.47.146:43218] helo=cruiser.plexpod.net) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 7A/1B-22029-EEFCC044 for ; Mon, 06 Mar 2006 19:12:30 -0500 Received: from dsl254-067-175.nyc1.dsl.speakeasy.net ([216.254.67.175] helo=desario.homelinux.net) by cruiser.plexpod.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.52) id 1FGPo9-0000M2-5s; Mon, 06 Mar 2006 19:12:09 -0500 Received: by desario.homelinux.net (sSMTP sendmail emulation); Mon, 6 Mar 2006 19:10:15 -0500 Date: Mon, 6 Mar 2006 19:10:15 -0500 To: Zeev Suraski Cc: pierre.php@gmail.com, internals@lists.php.net Message-ID: <20060307001015.GS7191@desario.homelinux.net> References: <20060305162128.5b1fdb86@localhost.localdomain> <20060306214619.5e6ec076@localhost.localdomain> <7.0.1.0.2.20060307013655.0c0064a8@zend.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7.0.1.0.2.20060307013655.0c0064a8@zend.com> User-Agent: Mutt/1.5.11 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cruiser.plexpod.net X-AntiAbuse: Original Domain - lists.php.net X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - plexpod.com X-Source: X-Source-Args: X-Source-Dir: Subject: Re: [PHP-DEV] Re: Adieu register_globals From: andrew@plexpod.com (Andrew Yochum) On Tue, Mar 07, 2006 at 01:38:34AM +0200, Zeev Suraski wrote: > A part of the decision was to supply the few lines of code necessary > to emulate register_globals in userspace. Volunteers? :) FWIW, I've used this successfully when tieing two systems with opposing register_globals requirements: extract($_GET,EXTR_REFS); extract($_POST,EXTR_REFS); extract($_COOKIES,EXTR_REFS); Gets the job done simply. Andrew