BC Math Функции
PHP Manual

bcdiv

(PHP 4, PHP 5)

bcdivDivide two arbitrary precision numbers

Описание

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

Divides the left_operand by the right_operand .

Параметри

left_operand

The left operand, as a string.

right_operand

The right operand, as a string.

scale

Този незадължителен параметър се използва за да се установи броя на цифрите след десетичната точка в резултата. Също така може да установите глобалния scale по подразбиране за всички функции, като използвате bcscale().

Връщани стойности

Returns the result of the division as a string, or NULL if right_operand is 0.

Примери

Example #1 bcdiv() example

<?php

echo bcdiv('105''6.55957'3);  // 16.007

?>

Вж. също


BC Math Функции
PHP Manual