Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:15067 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 46374 invoked by uid 1010); 17 Feb 2005 20:38:11 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 46359 invoked from network); 17 Feb 2005 20:38:11 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 17 Feb 2005 20:38:11 -0000 X-Host-Fingerprint: 195.141.85.118 uf2.search.ch Linux 2.4/2.6 Received: from ([195.141.85.118:40243] helo=xaxa.search.ch) by pb1.pair.com (ecelerity 1.2 (r4437)) with SMTP id BF/17-39535-1B005124 for ; Thu, 17 Feb 2005 15:38:09 -0500 Received: from localhost (localhost [127.0.0.1]) by xaxa.search.ch (Postfix) with ESMTP id 938F76CFB0; Thu, 17 Feb 2005 21:38:02 +0100 (CET) Received: by xaxa.search.ch (Postfix, from userid 65534) id 54D966D85A; Thu, 17 Feb 2005 21:38:01 +0100 (CET) Received: from [192.168.1.72] (ultrafilter2-i [192.168.85.3]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by xaxa.search.ch (Postfix) with ESMTP id E72D16CFB0; Thu, 17 Feb 2005 21:38:00 +0100 (CET) Message-ID: <421500A7.4040209@cschneid.com> Date: Thu, 17 Feb 2005 21:37:59 +0100 User-Agent: Mozilla Thunderbird 1.0 (X11/20041207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ron Korving Cc: internals@lists.php.net References: <59089102.20050217201853@marcus-boerger.de> <20050217195940.88226.qmail@lists.php.net> In-Reply-To: <20050217195940.88226.qmail@lists.php.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on xaxa.search.ch X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 X-Virus-Scanned: by AMaViS 0.3.12pre8 Subject: Re: Before March 1st aka PHP 5.1 beta From: cschneid@cschneid.com (Christian Schneider) Ron Korving wrote: > $foo = emptyor($foo, "bar"); I'm not really sure that you'd use this for. Set $foo to either the original value (if $foo was empty before) or "bar"? Is that empty as in empty()? So you could end up with null, "", 0, "0", false or "bar"? - Chris