summaryrefslogtreecommitdiff
path: root/ext/bcmath/tests/bccomp_error.phpt
blob: 90645c52f7e54122ed968bb2bc23e00536457e7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
bccomp() requires well-formed values
--EXTENSIONS--
bcmath
--FILE--
<?php

try {
    bccomp('a', '1');
} catch (\ValueError $e) {
    echo $e->getMessage() . PHP_EOL;
}

try {
    bccomp('1', 'a');
} catch (\ValueError $e) {
    echo $e->getMessage() . PHP_EOL;
}

?>
--EXPECT--
bccomp(): Argument #1 ($num1) is not well-formed
bccomp(): Argument #2 ($num2) is not well-formed