Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:16456 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 84737 invoked by uid 1010); 6 Jun 2005 17:22:27 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 84722 invoked from network); 6 Jun 2005 17:22:27 -0000 Received: from unknown (HELO caedmon.net) (127.0.0.1) by localhost with SMTP; 6 Jun 2005 17:22:27 -0000 X-Host-Fingerprint: 69.60.120.90 iconoclast.caedmon.net Linux 2.4/2.6 Received: from ([69.60.120.90:59618] helo=iconoclast.caedmon.net) by pb1.pair.com (ecelerity 1.2 r(5656M)) with SMTP id 97/CD-53949-15684A24 for ; Mon, 06 Jun 2005 13:22:25 -0400 Received: from localhost ([127.0.0.1]) by iconoclast.caedmon.net with esmtp (Exim 3.35 #1 (Debian)) id 1DfLIg-00018Q-00; Mon, 06 Jun 2005 13:22:10 -0400 Message-ID: <42A48643.3070704@caedmon.net> Date: Mon, 06 Jun 2005 13:22:11 -0400 User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jason Garber CC: internals@lists.php.net References: <5.1.0.14.2.20050603203711.028e9140@localhost> <5.1.0.14.2.20050603203711.028e9140@localhost> <5.1.0.14.2.20050605120644.033c8a00@localhost> <1852284679.20050606131608@ionzoft.com> In-Reply-To: <1852284679.20050606131608@ionzoft.com> X-Enigmail-Version: 0.90.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] PHP 5.1 From: sean@caedmon.net (Sean Coates) Jason Garber wrote: > If there was any way to accommodate this with userland PHP code, I > would have already done it. However it is an engine level function > that has to be added to the core of PHP. For the record, I also find ifsetor useful, but what you want can be accomplished like this: $email = isset($_GET['email']) ? $_GET['email'] : 'no email address'; ifsetor would make this much nicer, but there /is/ a way to accomplish what you want in userland. S