mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
13 lines
256 B
PHP
13 lines
256 B
PHP
--TEST--
|
|
Test exp() - wrong params for exp()
|
|
--INI--
|
|
precision=14
|
|
--FILE--
|
|
<?php
|
|
exp();
|
|
exp(23,true);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: exp() expects exactly 1 parameter, 0 given in %s on line %d
|
|
|
|
Warning: exp() expects exactly 1 parameter, 2 given in %s on line %d
|