mirror of
https://github.com/php/php-src.git
synced 2026-04-16 20:41:18 +02:00
19 lines
312 B
PHP
19 lines
312 B
PHP
--TEST--
|
|
bcsqrt() requires a well-formed value
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('bcmath')) die('skip bcmath extension not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
bcsqrt('a');
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage() . PHP_EOL;
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
bcsqrt(): Argument #1 ($num) is not well-formed
|