1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/standard/tests/math/fmod_error.phpt
2008-02-06 08:44:24 +00:00

18 lines
347 B
PHP

--TEST--
Test fmod() - wrong params test fmod()
--INI--
precision=14
--FILE--
<?php
fmod();
fmod(23);
fmod(23,2,true);
?>
--EXPECTF--
Warning: fmod() expects exactly 2 parameters, 0 given in %s on line 2
Warning: fmod() expects exactly 2 parameters, 1 given in %s on line 3
Warning: fmod() expects exactly 2 parameters, 3 given in %s on line 4