1--TEST--
2Test gmstrftime() function : usage variation - Checking month related formats which was not supported on Windows before VC14.
3--FILE--
4<?php
5/* Prototype  : string gmstrftime(string format [, int timestamp])
6 * Description: Format a GMT/UCT time/date according to locale settings
7 * Source code: ext/date/php_date.c
8 * Alias to functions:
9 */
10
11echo "*** Testing gmstrftime() : usage variation ***\n";
12
13// Initialise function arguments not being substituted (if any)
14$timestamp = gmmktime(8, 8, 8, 8, 8, 2008);
15setlocale(LC_ALL, "en_US");
16date_default_timezone_set("Asia/Calcutta");
17
18echo "\n-- Testing gmstrftime() function with  Abbreviated month name format %h --\n";
19$format = "%h";
20var_dump( gmstrftime($format) );
21var_dump( gmstrftime($format, $timestamp) );
22
23?>
24===DONE===
25--EXPECTF--
26*** Testing gmstrftime() : usage variation ***
27
28-- Testing gmstrftime() function with  Abbreviated month name format %h --
29string(%d) "%s"
30string(3) "Aug"
31===DONE===
32