php-8.0.30-src/ext/date/tests/DateTime_construct_error.phpt

26 lines
657 B
PHP

--TEST--
Test new DateTime() : error conditions
--FILE--
<?php
//Set the default time zone
date_default_timezone_set("GMT");
echo "*** Testing date_create() : error conditions ***\n";
echo "\n-- Testing new DateTime() with more than expected no. of arguments --\n";
$time = "GMT";
$timezone = timezone_open("GMT");
$extra_arg = 99;
try {
var_dump( new DateTime($time, $timezone, $extra_arg) );
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
*** Testing date_create() : error conditions ***
-- Testing new DateTime() with more than expected no. of arguments --
DateTime::__construct() expects at most 2 arguments, 3 given