(PHP 4, PHP 5, PHP 7)
bcsub — 2�����⾫�����ֵļ���
$left_operand
, string $right_operand
[, int $scale
= int
] ) : string
�������
��ȥ�Ҳ�����
.
left_operand
�ַ������͵��������.
right_operand
�ַ������͵��Ҳ�����.
scale
�˿�ѡ�����������ý����С������С��λ����Ҳ��ͨ��ʹ�� bcscale() ������ȫ��Ĭ�ϵ�С��λ�����������к�����
���ؼ���֮����Ϊ�ַ�������.
Example #1 bcsub() example
<?php
$a = '1.234';
$b = '5';
echo bcsub($a, $b); // -3
echo bcsub($a, $b, 4); // -3.7660
?>