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