Lines Matching refs:gmdate
2 Test gmdate() function : usage variation - Passing Month format options to format argument.
5 echo "*** Testing gmdate() : usage variation ***\n";
11 echo "\n-- Testing gmdate() function with full textual representation of month format --\n";
12 var_dump( gmdate('F') );
13 var_dump( gmdate('F', $timestamp) );
15 echo "\n-- Testing gmdate() function with numeric representation of month format --\n";
16 var_dump( gmdate('m') );
17 var_dump( gmdate('m', $timestamp) );
19 echo "\n-- Testing gmdate() function with short textual representation of month format --\n";
20 var_dump( gmdate('M') );
21 var_dump( gmdate('M', $timestamp) );
23 echo "\n-- Testing gmdate() function with numeric representation of month without leading zeros for…
24 var_dump( gmdate('n') );
25 var_dump( gmdate('n', $timestamp) );
27 echo "\n-- Testing gmdate() function with number of days in a month format --\n";
28 var_dump( gmdate('t') );
29 var_dump( gmdate('t', $timestamp) );
33 *** Testing gmdate() : usage variation ***
35 -- Testing gmdate() function with full textual representation of month format --
39 -- Testing gmdate() function with numeric representation of month format --
43 -- Testing gmdate() function with short textual representation of month format --
47 -- Testing gmdate() function with numeric representation of month without leading zeros format --
51 -- Testing gmdate() function with number of days in a month format --