Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:90746 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 30867 invoked from network); 20 Jan 2016 22:05:54 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 20 Jan 2016 22:05:54 -0000 Authentication-Results: pb1.pair.com smtp.mail=yohgaki@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=yohgaki@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.160.169 as permitted sender) X-PHP-List-Original-Sender: yohgaki@gmail.com X-Host-Fingerprint: 209.85.160.169 mail-yk0-f169.google.com Received: from [209.85.160.169] ([209.85.160.169:34946] helo=mail-yk0-f169.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id EC/B6-22511-0C400A65 for ; Wed, 20 Jan 2016 17:05:53 -0500 Received: by mail-yk0-f169.google.com with SMTP id s126so1975330ykf.2 for ; Wed, 20 Jan 2016 14:05:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=6Sg+FZaL9DwRFy2ueqQk4nEXgm+l4oQFXsPLcClTbBg=; b=RnpTLljdEkKSEzuO58UmiIQtLrSM4Fr7gQOf1moFfs6XdQNaxjeq8CiEut9RxI1qM5 B+5n0/08MN+opdh3EQ1XrrQ5ayxItKlvpadkoyjwFJ+VDxsjtoDyYkVBBkvb1V9QYOvH ZUJzwh/zEYGQoYDROYEgUf2hkhdq+KzNUHllQh9TVOnGULMzZMsUn1kS/2mgWT9MQO8E GIRwL9zGijP125qPQxe318N4lP9eYOp+7romJnumTSEfyIzieopoT7vEXaEOxRaYe9aP eRt7SSW7OTS/TWX6Tc2O+lUC8GlLKRXvjqAjmth3iSMVDznqgkJwWxSLGCJcjXqam18u 6dCA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=6Sg+FZaL9DwRFy2ueqQk4nEXgm+l4oQFXsPLcClTbBg=; b=Y+l4EDPgaI0d3XAncMpvBSRV3DqpLKDW4FZ8iN3axv3E4XP9RAB1iz7wYLOhzi8T1v 8JnhubkYYAx3qRT9OJmQ1NzMinxSP/b4sHDXKICQUaDaEBYp3XSOICdCgHS/vGaETInn N5xsTXJ5qsZ55ELyiO4KoobC52ZKpz99B+SXQ1DCyT6I77cKNmgOnx2oLockdcmzDBv5 Ztm2Q5Jte0zTMC8h9djlsYEBLCU/A8JjMDQos9XZNhVsEdKQilNdptHCjszYypRUBIZp Hnx6beBcKtNMbKW/RbgogVJ3Y9GPROEEINVEZocrOU+wTD4+Z2iP8iQkOUWCxydmelg+ hoeA== X-Gm-Message-State: ALoCoQkpZ/xK5VEESoO6RR2PmXHke4EX+q+57OOsN5JKK5fkTg44ZRznN6b7MfmERClYeUPTLY9j/uwA0SxcDHsIFo5b3/3/HA== X-Received: by 10.37.231.198 with SMTP id e189mr12290404ybh.130.1453327549585; Wed, 20 Jan 2016 14:05:49 -0800 (PST) MIME-Version: 1.0 Sender: yohgaki@gmail.com Received: by 10.129.88.139 with HTTP; Wed, 20 Jan 2016 14:05:10 -0800 (PST) In-Reply-To: <97.60.22511.B9DDF965@pb1.pair.com> References: <569E2E03.3070908@pascal-martin.fr> <97.60.22511.B9DDF965@pb1.pair.com> Date: Thu, 21 Jan 2016 07:05:10 +0900 X-Google-Sender-Auth: tNPnaT03ffHwXMU3v4Rt_B1Moy4 Message-ID: To: Andrea Faulds Cc: "internals@lists.php.net" Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] [RFC][VOTE] Number Format Separator From: yohgaki@ohgaki.net (Yasuo Ohgaki) Hi Andrea, On Thu, Jan 21, 2016 at 4:18 AM, Andrea Faulds wrote: > > One other approach I thought of is to use constant scalar expressions: > > +('123'.'456'.'789') > > It's not quite the same of native support, but it works. This is what I do on occasions. I have to read var_export()ed PHP code sometimes. If PHP supports this RFC and var_export() support it, it would be much easier to read. It's irrelevant for this RFC, but if PHP supports compile time string concatenation echo "Very long sting " "that is concatenated " "at compile time."; It would be nice to have. Regards, -- Yasuo Ohgaki yohgaki@ohgaki.net