Newsgroups: php.internals,php.qa Path: news.php.net Xref: news.php.net php.internals:28925 php.qa:28229 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 87936 invoked by uid 1010); 19 Apr 2007 11:26:37 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 87900 invoked from network); 19 Apr 2007 11:26:37 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 19 Apr 2007 11:26:37 -0000 Authentication-Results: pb1.pair.com smtp.mail=sebastian@nohn.net; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=sebastian@nohn.net; sender-id=unknown Received-SPF: error (pb1.pair.com: domain nohn.net from 85.214.77.40 cause and error) X-PHP-List-Original-Sender: sebastian@nohn.net X-Host-Fingerprint: 85.214.77.40 bxpcsr02.nohn.net Linux 2.5 (sometimes 2.4) (4) Received: from [85.214.77.40] ([85.214.77.40:45897] helo=bxpcsr02.nohn.net) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id BA/21-23065-BE157264 for ; Thu, 19 Apr 2007 07:26:36 -0400 Received: from localhost (localhost [127.0.0.1]) by bxpcsr02.nohn.net (Postfix) with ESMTP id B56F1938002; Thu, 19 Apr 2007 13:27:51 +0200 (CEST) Received: from bxpcsr02.nohn.net ([127.0.0.1]) by localhost (h939937.serverkompetenz.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31456-05; Thu, 19 Apr 2007 13:27:51 +0200 (CEST) Received: from ssl.nohn.org (localhost [127.0.0.1]) by bxpcsr02.nohn.net (Postfix) with ESMTP id 9636F938001; Thu, 19 Apr 2007 13:27:51 +0200 (CEST) Received: from 195.227.76.130 (SquirrelMail authenticated user sebastian@nohn.net) by ssl.nohn.org with HTTP; Thu, 19 Apr 2007 13:27:51 +0200 (CEST) Message-ID: <4627.195.227.76.130.1176982071.squirrel@ssl.nohn.org> In-Reply-To: <46273782.7070909@zend.com> References: <46210672.2010804@nohn.net> <46211D80.8050609@zend.com> <1956.84.63.50.23.1176620736.squirrel@ssl.nohn.org> <46273782.7070909@zend.com> Date: Thu, 19 Apr 2007 13:27:51 +0200 (CEST) To: "Antony Dovgal" Cc: "Zend Framework General" , ilia@php.net, php-qa@lists.php.net, internals@lists.php.net User-Agent: SquirrelMail/1.4.9a MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Re: diff in double-to-string conversion 5.2.1 vs 5.2.2 From: sebastian@nohn.net ("Sebastian Nohn") Hi, On Thu, April 19, 2007 11:33 am, Antony Dovgal wrote: > On 04/15/2007 11:05 AM, Sebastian Nohn wrote: >> > $a = 6900000000; >> var_dump($a); >> $b = "A is: ".$a; >> var_dump($b); >> ?> >> >> 5.2.1 output is: >> >> float(6.9E+9) >> string(16) "A is: 6900000000" >> >> 5.2.2-dev output is: >> >> float(6.9E+9) >> string(12) "A is: 6.9E+9" > > Fix committed, please test the next snapshot. Works! Thanks a lot! - Sebastian