Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:10983 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 92221 invoked by uid 1010); 8 Jul 2004 15:19:52 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 92188 invoked by uid 1007); 8 Jul 2004 15:19:52 -0000 Message-ID: <20040708151952.92187.qmail@pb1.pair.com> To: internals@lists.php.net Date: Thu, 08 Jul 2004 11:18:31 -0400 User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 References: <5.1.0.14.0.20040707203931.02fa6200@mail.ionzoft.com> <40ED64A0.7050305@cschneid.com> In-Reply-To: <40ED64A0.7050305@cschneid.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Posted-By: 130.58.81.153 Subject: Re: [PHP-DEV] what happened to that new isset() like language From: contact_marcos@yahoo.es (Marc Richards) Christian Schneider wrote: > Before it gets forgotten: I still think that > $x = ifsetor(mixed var, mixed var [, ...]); > with expressions in all parts is the way to go. > > Example usage: > $a = ifsetor($_REQUEST['x'], $db->get('x'), 'default_x'); > The other syntax could work for that as well... $a = $_REQUEST['x'] ?: $db->get('x') ?: 'default_x'; and with a little white-space it is even more readable: $a = $_REQUEST['x'] ?: $db->get('x') ?: 'default_x'; Marc