1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 18:22:42 +01:00
Files
archived-php-src/ext/standard/tests/math/floor_error.phpt

34 lines
688 B
PHP

--TEST--
Test floor() - error conditions - incorrect number of args
--FILE--
<?php
/* Prototype : float floor ( float $value )
* Description: Round fractions down.
* Source code: ext/standard/math.c
*/
echo "*** Testing floor() : error conditions ***\n";
$arg_0 = 1.0;
$extra_arg = 1;
echo "\n-- Too many arguments --\n";
var_dump(floor($arg_0, $extra_arg));
echo "\n-- Too few arguments --\n";
var_dump(floor());
?>
===Done===
--EXPECTF--
*** Testing floor() : error conditions ***
-- Too many arguments --
Warning: Wrong parameter count for floor() in %s on line %d
NULL
-- Too few arguments --
Warning: Wrong parameter count for floor() in %s on line %d
NULL
===Done===