mirror of
https://github.com/php/php-src.git
synced 2026-04-23 16:08:35 +02:00
ec5e811dbd
Closes GH-6714 Signed-off-by: George Peter Banyard <girgias@php.net>
26 lines
459 B
PHP
26 lines
459 B
PHP
--TEST--
|
|
bcpow() requires well-formed values
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('bcmath')) die('skip bcmath extension not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
bcpow('a', '1');
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage() . PHP_EOL;
|
|
}
|
|
|
|
try {
|
|
bcpow('1', 'a');
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage() . PHP_EOL;
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
bcpow(): Argument #1 ($num) is not well-formed
|
|
bcpow(): Argument #2 ($exponent) is not well-formed
|