blob: 4c90c20a2052f290624b89e7078f0169b4d17506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
Test log() - wrong params test log()
--INI--
precision=14
--FILE--
<?php
try {
log(36, -4);
} catch (ValueError $exception) {
echo $exception->getMessage() . "\n";
}
?>
--EXPECT--
log(): Argument #2 ($base) must be greater than 0
|