1--TEST-- 2Test strftime() function : usage variation - Checking day related formats which was not supported on Windows before VC14. 3--SKIPIF-- 4<?php 5if (strtoupper(substr(PHP_OS, 0, 3)) != 'WIN') { 6 die("skip Test is valid for Windows"); 7} 8?> 9--FILE-- 10<?php 11/* Prototype : string strftime(string format [, int timestamp]) 12 * Description: Format a local time/date according to locale settings 13 * Source code: ext/date/php_date.c 14 * Alias to functions: 15 */ 16 17echo "*** Testing strftime() : usage variation ***\n"; 18 19// Initialise function arguments not being substituted (if any) 20setlocale(LC_ALL, "C"); 21date_default_timezone_set("Asia/Calcutta"); 22$timestamp = mktime(8, 8, 8, 8, 8, 2008); 23 24echo "\n-- Testing strftime() function with Day of the month as decimal single digit format --\n"; 25$format = "%e"; 26var_dump( strftime($format) ); 27var_dump( strftime($format, $timestamp) ); 28?> 29===DONE=== 30--EXPECTF-- 31*** Testing strftime() : usage variation *** 32 33-- Testing strftime() function with Day of the month as decimal single digit format -- 34string(%d) "%A%d" 35string(2) " 8" 36===DONE=== 37