|
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-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 11:00:01 2025 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