(PHP 4, PHP 5, PHP 7)
bcmul — 2�����⾫�����ֳ˷�����
$left_operand
, string $right_operand
[, int $scale = int
] ) : string
������������Ҳ�����
left_operand�ַ������͵��������.
right_operand�ַ������͵��Ҳ�����.
scale�˿�ѡ�����������ý����С������С��λ����Ҳ��ͨ��ʹ�� bcscale() ������ȫ��Ĭ�ϵ�С��λ�����������к�����
���ؽ��Ϊ�ַ�������.
Example #1 bcmul() ʾ��
<?php
echo bcmul('1.34747474747', '35', 3); // 47.161
echo bcmul('2', '4'); // 8
?>