bcscale

(PHP 4, PHP 5, PHP 7)

bcscale��������bc��ѧ������Ĭ��С���㱣��λ��

˵��

bcscale ( int $scale ) : bool

��������bc��ѧ������δ�趨����µ�С���㱣��λ��.

����

scale

С���㱣��λ��.

����ֵ

�ɹ�ʱ���� TRUE�� ������ʧ��ʱ���� FALSE��

����

Example #1 bcscale() example

<?php

// default scale : 3
bcscale(3);
echo 
bcdiv('105''6.55957'); // 16.007

// this is the same without bcscale()
echo bcdiv('105''6.55957'3); // 16.007

?>