24 lines
455 B
PHP
24 lines
455 B
PHP
--TEST--
|
|
BcMath\Number construct error
|
|
--EXTENSIONS--
|
|
bcmath
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
$num = new BcMath\Number('1');
|
|
$num->__construct(5);
|
|
} catch (Error $e) {
|
|
echo $e->getMessage() . "\n";
|
|
}
|
|
|
|
try {
|
|
$num = new BcMath\Number('a');
|
|
var_dump($num);
|
|
} catch (Error $e) {
|
|
echo $e->getMessage() . "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Cannot modify readonly property BcMath\Number::$value
|
|
BcMath\Number::__construct(): Argument #1 ($num) is not well-formed
|