summaryrefslogtreecommitdiff
path: root/ext/date/tests/DateTime_construct_error.phpt
blob: 56ab1f3003ff5bcf3b63464fab1b6b2328e41e69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--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