Lines Matching refs:gmdate
2 Test gmdate() function : usage variation - Passing Full Date/Time format options to format argument.
5 echo "*** Testing gmdate() : usage variation ***\n";
11 echo "\n-- Testing gmdate() function with ISO 8601 date format --\n";
12 var_dump( gmdate('c') );
13 var_dump( gmdate('c', $timestamp) );
15 echo "\n-- Testing gmdate() function with RFC 2822 date format --\n";
16 var_dump( gmdate('r') );
17 var_dump( gmdate('r', $timestamp) );
19 echo "\n-- Testing gmdate() function with seconds since Unix Epoch format --\n";
20 var_dump( gmdate('U') );
21 var_dump( gmdate('U', $timestamp) );
25 *** Testing gmdate() : usage variation ***
27 -- Testing gmdate() function with ISO 8601 date format --
31 -- Testing gmdate() function with RFC 2822 date format --
35 -- Testing gmdate() function with seconds since Unix Epoch format --