Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:60840 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 73755 invoked from network); 15 Jun 2012 00:56:26 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 15 Jun 2012 00:56:26 -0000 Authentication-Results: pb1.pair.com smtp.mail=hartmut.holzgraefe@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=hartmut.holzgraefe@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.214.42 as permitted sender) X-PHP-List-Original-Sender: hartmut.holzgraefe@gmail.com X-Host-Fingerprint: 209.85.214.42 mail-bk0-f42.google.com Received: from [209.85.214.42] ([209.85.214.42:43861] helo=mail-bk0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 50/46-39100-9388ADF4 for ; Thu, 14 Jun 2012 20:56:25 -0400 Received: by bkcik5 with SMTP id ik5so2207715bkc.29 for ; Thu, 14 Jun 2012 17:56:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=oDMcAH19Nw4eqltotsI2q9DI7An8nwW5z8ftALOio2o=; b=DMCqiWLl7MyvdFDdUHG/85g7XT3hFuMUgKHKzyInSG3sAhq0rSJvZY1MIzeltiBQO5 AlmRIyL7dpn9YOOG++hqX4BLyK5r5Zmc5Syn02gKlIp/YvZ1KfBOz9pQ6zBC1EInvrai 7sdP9kXv8l6r0xVIbgFfC30zekeA44kO1am/6/C7LMpcnvf+HRU7Fas1g9Sadz8OBgvg Dx3IqBdBso/2SACFgLB4m6mVUSUbX/xgZ2iRvAwQMnYF4yIkev6NF8eHxanmeZOyYWb2 u/OSWNPckufaXLjCj85kJoFkigIRYTV9CL0dOLVFo/3fVg2d2c/olU8fqzoNpUQHrwl6 SVDA== Received: by 10.204.152.195 with SMTP id h3mr2076469bkw.119.1339721781917; Thu, 14 Jun 2012 17:56:21 -0700 (PDT) Received: from [10.42.42.195] (e182221028.adsl.alicedsl.de. [85.182.221.28]) by mx.google.com with ESMTPS id iq16sm8376453bkc.6.2012.06.14.17.56.20 (version=SSLv3 cipher=OTHER); Thu, 14 Jun 2012 17:56:20 -0700 (PDT) Message-ID: <4FDA8833.1040408@gmail.com> Date: Fri, 15 Jun 2012 02:56:19 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: internals@lists.php.net References: <4FAF1EE5.5010409@sugarcrm.com> In-Reply-To: <4FAF1EE5.5010409@sugarcrm.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] bug 54547 From: hartmut.holzgraefe@gmail.com (Hartmut Holzgraefe) Too late to raise this now anyway, but ... On 13.05.2012 04:39, Stas Malyshev wrote: > I know this was discussed a number of times here, but just to bring it > to a conclusion - I intend to apply patch in the bug report - which > removes conversion for strings that do not convert to integers - to 5.4. > If anybody sees anything that breaks because of this please tell. "12345678901234567890" == "12345678901234567890.0" used to be true, is now false ... i'd still say that's ok though as it is a case of "never compare floats for equality" here, now that the decimal clearly says that at least the right side is supposed to be float, not integer ... -- hartmut