C:\xampp\php\tests\parseFile\math.php
1 2 3 4 5 6
<?php
$nb
=
bcsub
(
1.234
,
5
,
4
);
if (
preg_match
(
'/^-/'
,
$nb
)) {
echo
'minus'
;
}
?>