Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:83266 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 7527 invoked from network); 20 Feb 2015 06:13:22 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 20 Feb 2015 06:13:22 -0000 Authentication-Results: pb1.pair.com smtp.mail=kalle.php@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=kalle.php@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.217.178 as permitted sender) X-PHP-List-Original-Sender: kalle.php@gmail.com X-Host-Fingerprint: 209.85.217.178 mail-lb0-f178.google.com Received: from [209.85.217.178] ([209.85.217.178:36944] helo=mail-lb0-f178.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id C5/83-25547-180D6E45 for ; Fri, 20 Feb 2015 01:13:21 -0500 Received: by lbvn10 with SMTP id n10so4388141lbv.4 for ; Thu, 19 Feb 2015 22:13:17 -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:date:message-id:subject :from:to:cc:content-type; bh=C0dMPnRrKObvCUChFCZ/r94PAmuSnxF1bAVqCHL1K7A=; b=o+DxzF7fdJ5vdaxtLz4VKDysBtZcNbwaUXP1mp0ZUNhVH4kYWrlCX/MGSUVIhMnOKD X7RIBnHiRWMw+ma/ft9p+EQq6X3xLw+1gbdU5CCr5DPhmiQ3Qv6qi/RJ0e8NtdpJw6dj AZmLVV1B86KXful0AORkv0zBMkT7PLPv6GSIr2KPqVdiox6kyB3ww1xbHtO6bKbSpCel 9SNzVkey6fLk2oRf+WN66ZnsX8gI063bpCV8lwETuDBUqJyuE5C8zZboFa8TWJCPHV/r DVLMQCWjiVsJERQt6gMmIyrEFsaJtakIWGk1u4G9qEhVhK1VSwmbspfjYEjSDFoKoBOY f9VA== MIME-Version: 1.0 X-Received: by 10.152.8.33 with SMTP id o1mr7345253laa.56.1424412797489; Thu, 19 Feb 2015 22:13:17 -0800 (PST) Sender: kalle.php@gmail.com Received: by 10.112.128.231 with HTTP; Thu, 19 Feb 2015 22:13:17 -0800 (PST) In-Reply-To: References: Date: Fri, 20 Feb 2015 07:13:17 +0100 X-Google-Sender-Auth: -MVEhMCVqgMu7Dt7fQMFLguYMTw Message-ID: To: Levi Morrison Cc: internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Re: [RFC] Reserving More Types in PHP 7 From: kalle@php.net (Kalle Sommer Nielsen) 2015-02-20 2:36 GMT+01:00 Levi Morrison : > int, integer > bool, boolean > true, false > float, double I guess we should add 'real' here as well, since we still have the (real) type cast and is_() type check for consistency: C:\dev\php-src>php -r "var_dump((real) 42, is_real(13.37));" float(42) bool(true) > string > null -- regards, Kalle Sommer Nielsen kalle@php.net