From 4169ae1c85162340c059fba2cce524c7456ac00d Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Mon, 8 Dec 2003 09:19:12 +0000 Subject: [PATCH] See also other *dec* functions and base_convert git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@145947 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/math/functions/bindec.xml | 7 +++++-- reference/math/functions/decbin.xml | 7 +++++-- reference/math/functions/dechex.xml | 7 +++++-- reference/math/functions/decoct.xml | 7 +++++-- reference/math/functions/hexdec.xml | 7 +++++-- reference/math/functions/octdec.xml | 7 +++++-- 6 files changed, 30 insertions(+), 12 deletions(-) diff --git a/reference/math/functions/bindec.xml b/reference/math/functions/bindec.xml index ac2c65e838..27a388d3ab 100644 --- a/reference/math/functions/bindec.xml +++ b/reference/math/functions/bindec.xml @@ -1,5 +1,5 @@ - + @@ -22,7 +22,10 @@ 31 bits of 1's or 2147483647 in decimal. - See also: decbin. + See also decbin, + octdec, + hexdec and + base_convert. diff --git a/reference/math/functions/decbin.xml b/reference/math/functions/decbin.xml index c3e1356cef..746478eb69 100644 --- a/reference/math/functions/decbin.xml +++ b/reference/math/functions/decbin.xml @@ -1,5 +1,5 @@ - + @@ -18,7 +18,10 @@ 4294967295 in decimal resulting to a string of 32 1's. - See also: bindec. + See also bindec, + decoct, + dechex and + base_convert. diff --git a/reference/math/functions/dechex.xml b/reference/math/functions/dechex.xml index 9c139c4a39..55179ed380 100644 --- a/reference/math/functions/dechex.xml +++ b/reference/math/functions/dechex.xml @@ -1,5 +1,5 @@ - + @@ -18,7 +18,10 @@ be converted is 2147483647 in decimal resulting to "7fffffff". - See also hexdec. + See also hexdec, + decbin, + decoct and + base_convert. diff --git a/reference/math/functions/decoct.xml b/reference/math/functions/decoct.xml index d47eef2fb2..e09ac2079f 100644 --- a/reference/math/functions/decoct.xml +++ b/reference/math/functions/decoct.xml @@ -1,5 +1,5 @@ - + @@ -18,7 +18,10 @@ 2147483647 in decimal resulting to "17777777777". - See also octdec. + See also octdec, + decbin, + dechex and + base_convert. diff --git a/reference/math/functions/hexdec.xml b/reference/math/functions/hexdec.xml index 5d15b9cad4..7dfbe8fbb3 100644 --- a/reference/math/functions/hexdec.xml +++ b/reference/math/functions/hexdec.xml @@ -1,5 +1,5 @@ - + @@ -41,7 +41,10 @@ var_dump(hexdec("a0")); - See also dechex. + See also dechex, + bindec, + octdec and + base_convert. diff --git a/reference/math/functions/octdec.xml b/reference/math/functions/octdec.xml index a02b8f3a4a..d822c28ed9 100644 --- a/reference/math/functions/octdec.xml +++ b/reference/math/functions/octdec.xml @@ -1,5 +1,5 @@ - + @@ -19,7 +19,10 @@ decimal. - See also decoct. + See also decoct, + bindec, + hexdec and + base_convert.