|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-03-19 12:26 UTC] scottmac@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Sat Feb 14 18:00:02 2026 UTC |
Description: ------------ PHP Version 5.2.4 System Linux test2 2.6.19 #7 SMP PREEMPT Sun Dec 17 22:01:07 CET 2006 i686 Build Date Oct 16 2007 15:19:41 Configure Command './configure' '--prefix=/usr/PHP5' '--with-config-file-path=/usr/PHP5' '--sysconfdir=/usr/PHP5' '--enable-track-vars' '--with-libxml-dir=/usr/include/libxml2' '--with-xml' '--enable-xslt' '--with-mysql=/usr/MYSQL_5.0.45' '--with-mysql-sock=/tmp/mysql.sock' '--with-iconv' '--with-jpeg-dir=/usr/lib/' '--enable-mbstring' '--enable-ftp' '--with-gd' '--with-zlib' '--with-gettext' '--enable-safe-mode' '--with-curl=/usr/local/include/curl' '--with-apxs=/usr/Apache/bin/apxs' '--with-mcrypt' '--with-imap=/usr/local/src/imap-2006k/' '--without-krb5' Reproduce code: --------------- $pay=19.90; $pay_grosze=$pay*100; $zaplacono=1990; if($zaplacono!=$pay_grosze) { echo $zaplacono."!=".$pay_grosze; }else { echo $zaplacono."=".$pay_grosze; } Expected result: ---------------- 1990=1990 Actual result: -------------- 1990!=1990