Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:60200 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 23965 invoked from network); 18 Apr 2012 21:01:19 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 18 Apr 2012 21:01:19 -0000 Authentication-Results: pb1.pair.com smtp.mail=nikita.ppv@googlemail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=nikita.ppv@googlemail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain googlemail.com designates 209.85.217.170 as permitted sender) X-PHP-List-Original-Sender: nikita.ppv@googlemail.com X-Host-Fingerprint: 209.85.217.170 mail-lb0-f170.google.com Received: from [209.85.217.170] ([209.85.217.170:54047] helo=mail-lb0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 8B/A3-03623-57B2F8F4 for ; Wed, 18 Apr 2012 17:01:19 -0400 Received: by lbbgh12 with SMTP id gh12so846520lbb.29 for ; Wed, 18 Apr 2012 14:00:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=33JSrCzPb1kp6yH2w7dq4OixLGzn4C41nViMBXEBc0g=; b=KDqUKInpuZ+QfUkLPCKzLSrxqBDIUiO+T6BqHQZ7x/mGpsj7M4s68JJVEJF5M1j3i8 ImYtfLdNFKXXi9ElqIZFukiR+5YwECjh0itr1J1YETrrINGRCazUeajhwyWV/QB3TSov NHMtxBlpiDXVUjvQTkSDNajYTX8u+pxGHYMczcIw3hwWSuT6mJWf5IKVxllfbaB1RSCE 8EZvQzMzpt+nAaGJm0kdB7bK3qUFUHq+Or7EJD2/C7J8IH1HiC4zT8I8KCSdwzkSHzVQ 993jssFDpnGGu28Wx86t/inLvJPzn+p+3BjOumgmF/ACL2Y7ZodZ+p+JftPHkUDD4nLD RV4A== MIME-Version: 1.0 Received: by 10.112.84.103 with SMTP id x7mr1771038lby.52.1334782834276; Wed, 18 Apr 2012 14:00:34 -0700 (PDT) Received: by 10.152.127.68 with HTTP; Wed, 18 Apr 2012 14:00:34 -0700 (PDT) In-Reply-To: <4F8F2304.7090402@sugarcrm.com> References: <4F8DF4B1.2040307@sugarcrm.com> <4F8F2304.7090402@sugarcrm.com> Date: Wed, 18 Apr 2012 23:00:34 +0200 Message-ID: To: Stas Malyshev Cc: "Matthew Weier O'Phinney" , "internals@lists.php.net" Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: [PHP-DEV] Re: [RFC] skipping optional parameters From: nikita.ppv@googlemail.com (Nikita Popov) On Wed, Apr 18, 2012 at 10:24 PM, Stas Malyshev wrote: > Hi! > >> My one comment, which others have raised, is readability of multiple >> commas -- TBH, at first glance it has the appearance of a mistake. I >> think those suggesting a keyword such as "default" make a good point in >> this regard -- it makes it 100% clear that you want the default value > > I wouldn't mind default but that means another keyword which means > another disruption (default would be pretty common method name, etc.) "default" is already a reserved keyword. It's used in switch constructs. So it is safe to use :) Nikita