File: timezone_offset_get_error.phpt

package info (click to toggle)
php8.4 8.4.16-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 211,276 kB
  • sloc: ansic: 1,176,142; php: 35,419; sh: 11,964; cpp: 7,208; pascal: 4,951; javascript: 3,091; asm: 2,817; yacc: 2,411; makefile: 696; xml: 446; python: 301; awk: 148
file content (74 lines) | stat: -rw-r--r-- 2,314 bytes parent folder | download | duplicates (3)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
--TEST--
Test timezone_offset_get() function : error conditions
--FILE--
<?php
//Set the default time zone
date_default_timezone_set("GMT");
$tz = timezone_open("Europe/London");
$date = date_create("GMT");

echo "*** Testing timezone_offset_get() : error conditions ***\n";

echo "\n-- Testing timezone_offset_get() function with an invalid values for \$object argument --\n";
$invalid_obj = new stdClass();
try {
    var_dump( timezone_offset_get($invalid_obj, $date) );
} catch (Error $ex) {
    var_dump($ex->getMessage());
    echo "\n";
}
$invalid_obj = 10;
try {
    var_dump( timezone_offset_get($invalid_obj, $date) );
} catch (Error $ex) {
    var_dump($ex->getMessage());
    echo "\n";
}
$invalid_obj = null;
try {
    var_dump( timezone_offset_get($invalid_obj, $date) );
} catch (Error $ex) {
    var_dump($ex->getMessage());
    echo "\n";
}

echo "\n-- Testing timezone_offset_get() function with an invalid values for \$datetime argument --\n";
$invalid_obj = new stdClass();
try {
    var_dump( timezone_offset_get($tz, $invalid_obj) );
} catch (Error $ex) {
    var_dump($ex->getMessage());
    echo "\n";
}
$invalid_obj = 10;
try {
    var_dump( timezone_offset_get($tz, $invalid_obj) );
} catch (Error $ex) {
    var_dump($ex->getMessage());
    echo "\n";
}
$invalid_obj = null;
try {
    var_dump( timezone_offset_get($tz, $invalid_obj) );
} catch (Error $ex) {
    var_dump($ex->getMessage());
    echo "\n";
}
?>
--EXPECT--
*** Testing timezone_offset_get() : error conditions ***

-- Testing timezone_offset_get() function with an invalid values for $object argument --
string(89) "timezone_offset_get(): Argument #1 ($object) must be of type DateTimeZone, stdClass given"

string(84) "timezone_offset_get(): Argument #1 ($object) must be of type DateTimeZone, int given"

string(85) "timezone_offset_get(): Argument #1 ($object) must be of type DateTimeZone, null given"


-- Testing timezone_offset_get() function with an invalid values for $datetime argument --
string(96) "timezone_offset_get(): Argument #2 ($datetime) must be of type DateTimeInterface, stdClass given"

string(91) "timezone_offset_get(): Argument #2 ($datetime) must be of type DateTimeInterface, int given"

string(92) "timezone_offset_get(): Argument #2 ($datetime) must be of type DateTimeInterface, null given"