|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-08-13 10:42 UTC] laruence@php.net
-Status: Open
+Status: Bogus
[2011-08-13 10:42 UTC] laruence@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 19:00:01 2025 UTC |
Description: ------------ Problem with float whole numbers in type conversion. Test script: --------------- // This outputs: float(920) var_dump('9.2' * 100); // This outputs: int(919) var_dump(intval('9.2' * 100)); // This outputs: int(920) var_dump(intval(strval('9.2' * 100)));