BC Math Functions
PHP Manual

bcpow

(PHP 4, PHP 5)

bcpowعددی با دقت دلخواه به توان عدد دیگر

Description

string bcpow ( string $left_operand , string $right_operand [, int $scale ] )

left_operand به توان right_operand.

Parameters

left_operand

عملوند چپ به عنوان رشته.

right_operand

عملوند راست به عنوان رشته.

scale

This optional parameter is used to set the number of digits after the decimal place in the result. You can also set the global default scale for all functions by using bcscale().

Return Values

بازگرداندن نتیجه به عنوان رشته.

Examples

Example #1 مثال bcpow()

<?php

echo bcpow('4.2''3'2); // 74.08

?>

See Also


BC Math Functions
PHP Manual