From d6bc44b4bf2a8d3663c82c0aa992b4bb3c8be434 Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Sun, 22 Feb 2004 20:14:33 +0000 Subject: [PATCH] fix #25751 added bcpow and gmp_pow to see also git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@152098 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/math/functions/pow.xml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/reference/math/functions/pow.xml b/reference/math/functions/pow.xml index 053156279e..85e4376f49 100644 --- a/reference/math/functions/pow.xml +++ b/reference/math/functions/pow.xml @@ -1,5 +1,5 @@ - + @@ -20,8 +20,14 @@ If the power cannot be computed, a warning will be issued, - and pow will return &false;. + and pow will return &false;. Since PHP 4.2.0 + pow doesn't not issue any warning. + + + PHP cannot handle negative bases. + + Some examples of <function>pow</function> @@ -45,7 +51,8 @@ echo pow(-1, 5.5); // error - See also exp and sqrt. + See also exp, sqrt, + bcpow and gmp_pow,