From bffdb553cb1512e854d6d8b743d4a17698100294 Mon Sep 17 00:00:00 2001 From: Jeroen van Wolffelaar Date: Sat, 8 Sep 2001 18:26:01 +0000 Subject: [PATCH] Precisify comment on bug git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@57149 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/types.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/language/types.xml b/language/types.xml index e87251633f..3dbfdf6416 100644 --- a/language/types.xml +++ b/language/types.xml @@ -1,5 +1,5 @@ - + Types @@ -336,14 +336,16 @@ var_dump($large_number); - Unfortunately, there is a bug in the script engine (still - present in 4.0.6, probably resolved in 4.0.7) so that this + Unfortunately, there was a bug in PHP so that this does not always work correctly when there are negative numbers involved. For example: when you do -50000 * $million, the result will be -429496728. However, when both operands are positive there is no problem. + + This is solved in PHP 4.0.7 +