From 86c395700f0ee6a540a41397858b45145f8c1571 Mon Sep 17 00:00:00 2001 From: Wolfgang Drews Date: Tue, 15 Jan 2002 20:30:04 +0000 Subject: [PATCH] changed the highest value for decbin() to the correct one. more to come :( git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@67855 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/math.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/math.xml b/functions/math.xml index 24640209c2..f959eb890a 100644 --- a/functions/math.xml +++ b/functions/math.xml @@ -1,5 +1,5 @@ - + Mathematical Functions Math @@ -501,7 +501,7 @@ $ten = ceil(9.999); // $ten = 10.0; Returns a string containing a binary representation of the given number argument. The largest number that can be converted is - 2147483647 in decimal resulting to a string of 31 1's. + 4294967295 in decimal resulting to a string of 32 1's. See also the bindec function.