blob: 1e6dd372a5ea6c75f0e7fc201b495b4d6a5c08b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
bcscale() with negative argument
--SKIPIF--
<?php if(!extension_loaded("bcmath")) print "skip"; ?>
--INI--
bcmath.scale=0
--FILE--
<?php
bcscale(-4);
echo bcdiv("20.56", "4");
?>
--EXPECT--
5
|