|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-05-11 09:52 UTC] johannes@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Fri Feb 06 16:00:02 2026 UTC |
Description: ------------ wrong return value Reproduce code: --------------- <? $tmp = 2.01 * 100; echo gettype($tmp).":".$tmp.":".intval($tmp)."\n"; ?> Expected result: ---------------- double:201:200 Actual result: -------------- double:201:201