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
This commit is contained in:
Wolfgang Drews 2002-01-15 20:30:04 +00:00
parent 0d064e9ce3
commit 86c395700f

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.68 $ -->
<!-- $Revision: 1.69 $ -->
<reference id="ref.math">
<title>Mathematical Functions</title>
<titleabbrev>Math</titleabbrev>
@ -501,7 +501,7 @@ $ten = ceil(9.999); // $ten = 10.0;
<para>
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.
</para>
<para>
See also the <function>bindec</function> function.