@ -4,6 +4,8 @@ bcdiv — Divide two arbitrary precision numbers
TestFest2009
Antoni Torrents
antoni@solucionsinternet.com
--SKIPIF--
<?php if(!extension_loaded("bcmath")) print "skip"; ?>
--FILE--
<?php
echo bcdiv('10.99', '0');
@ -3,6 +3,8 @@ bcdiv — Divide two arbitrary precision numbers
--CREDITS--
echo bcdiv('1', '2', '3', '4');
@ -3,6 +3,8 @@ bcmod — Get modulus of an arbitrary precision number
echo bcmod('1', '2', '3');
@ -3,6 +3,8 @@ bcpowmod — Raise an arbitrary precision number to another, reduced by a specif
echo bcpowmod('1');
echo bcpowmod('1', '2');
echo bcpowmod('1', '2', '3', '4', '5');
@ -3,6 +3,8 @@ bcsqrt — Get the square root of an arbitrary precision number
echo bcsqrt('-9');