1--TEST--
2Test strftime() function : usage variation - Checking newline and tab formats which are not supported on Windows.
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, "en_US");
21date_default_timezone_set("Asia/Calcutta");
22$timestamp = mktime(8, 8, 8, 8, 8, 2008);
23
24//array of values to iterate over
25$inputs = array(
26	  'Newline character' => "%n",
27	  'Tab character' => "%t"
28);
29
30// loop through each element of the array for timestamp
31
32foreach($inputs as $key =>$value) {
33      echo "\n--$key--\n";
34	  var_dump( strftime($value) );
35	  var_dump( strftime($value, $timestamp) );
36}
37
38?>
39===DONE===
40--EXPECTF--
41*** Testing strftime() : usage variation ***
42
43--Newline character--
44bool(false)
45bool(false)
46
47--Tab character--
48bool(false)
49bool(false)
50===DONE===
51