mirror of
https://github.com/php/php-src.git
synced 2026-04-13 02:52:48 +02:00
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
13 lines
238 B
PHP
13 lines
238 B
PHP
--TEST--
|
|
Bug #66364 (BCMath bcmul ignores scale parameter)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('bcmath')) die('skip bcmath extension not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(bcmul('0.3', '0.2', 4));
|
|
?>
|
|
--EXPECT--
|
|
string(6) "0.0600"
|