Lines Matching refs:gmdate

2 Test gmdate() function : usage variation - Passing Timezone format options to format argument.
5 echo "*** Testing gmdate() : usage variation ***\n";
11 echo "\n-- Testing gmdate() function with Timezone identifier format --\n";
12 var_dump( gmdate('e') );
13 var_dump( gmdate('e', $timestamp) );
15 echo "\n-- Testing gmdate() function with checking whether date is in daylight saving time format -…
16 var_dump( gmdate('I') );
17 var_dump( gmdate('I', $timestamp) );
19 echo "\n-- Testing gmdate() function with difference to GMT in hours format --\n";
20 var_dump( gmdate('O') );
21 var_dump( gmdate('O', $timestamp) );
23 echo "\n-- Testing gmdate() function with Difference to GMT in hours using colon as separator forma…
24 var_dump( gmdate('P') );
25 var_dump( gmdate('P', $timestamp) );
27 echo "\n-- Testing gmdate() function with timezone abbreviation format --\n";
28 var_dump( gmdate('T') );
29 var_dump( gmdate('T', $timestamp) );
31 echo "\n-- Testing gmdate() function with timezone offset format --\n";
32 var_dump( gmdate('T') );
33 var_dump( gmdate('T', $timestamp) );
37 *** Testing gmdate() : usage variation ***
39 -- Testing gmdate() function with Timezone identifier format --
43 -- Testing gmdate() function with checking whether date is in daylight saving time format --
47 -- Testing gmdate() function with difference to GMT in hours format --
51 -- Testing gmdate() function with Difference to GMT in hours using colon as separator format --
55 -- Testing gmdate() function with timezone abbreviation format --
59 -- Testing gmdate() function with timezone offset format --