Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:60934 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 46904 invoked from network); 22 Jun 2012 07:09:07 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 22 Jun 2012 07:09:07 -0000 Authentication-Results: pb1.pair.com header.from=kazuo@o-ishi.jp; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=oishi@giraffy.jp; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain giraffy.jp from 210.172.133.183 cause and error) X-PHP-List-Original-Sender: oishi@giraffy.jp X-Host-Fingerprint: 210.172.133.183 mail-out.vps.gmoserver.jp Linux 2.6 Received: from [210.172.133.183] ([210.172.133.183:51332] helo=mailgw01.vps.gmoserver.jp) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E3/B8-21324-E0A14EF4 for ; Fri, 22 Jun 2012 03:09:04 -0400 Received: from www1.giraffy.jp (www1.giraffy.jp [210.172.151.35]) by mailgw01.vps.gmoserver.jp (Postfix) with ESMTP id 781E21888155; Fri, 22 Jun 2012 16:08:59 +0900 (JST) Received: from molech.giraffy.jp (aa024044.ppp.asahi-net.or.jp [110.5.24.44]) by www1.giraffy.jp (Postfix) with ESMTPSA id 2B05B128F0066; Fri, 22 Jun 2012 16:08:59 +0900 (JST) To: Christopher Jones , internals@lists.php.net In-Reply-To: <4FE364D8.9000204@oracle.com> (Christopher Jones's message of "Thu, 21 Jun 2012 11:15:52 -0700") References: <4FAF1EE5.5010409@sugarcrm.com> <4FDA8833.1040408@gmail.com> <874nqdnnas.fsf@molech.giraffy.jp> <4FE364D8.9000204@oracle.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1.50 (gnu/linux) Date: Fri, 22 Jun 2012 16:08:58 +0900 Message-ID: <8762ajq0vp.fsf@molech.giraffy.jp> MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [PHP-DEV] bug 54547 From: kazuo@o-ishi.jp (OISHI Kazuo) Hi, >> In addition to == operator, >, <, >=, and <= operators are influenced. >> >> And, hexdecimal format for big number is now case-sensitive. >> >> http://www.mail-archive.com/internals@lists.php.net/msg58789.html > > Can you add some phpt tests for all the cases you've raised? This is the phpt. All tests passed in PHP 5.4.3 but failed in 5.4.4. (I don't know how I can add this phpt into tests.) ========================================================== --TEST-- Bug #62097: New behavior of string == has a compatibility problem (2) --FILE-- "0xFFFFFFFFFFFFFFFF"); var_dump("0xffffffffffffffff" <= "0xFFFFFFFFFFFFFFFF"); --EXPECT-- bool(true) bool(true) bool(true) bool(true) bool(true) bool(true) bool(false) bool(true) ========================================================== -- OISHI Kazuo