1--TEST-- 2Test strftime() function : usage variation - Passing literal related strings to format argument. 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, "en_US"); 15date_default_timezone_set("Asia/Calcutta"); 16$timestamp = mktime(8, 8, 8, 8, 8, 2008); 17$format = "%%"; 18 19echo "\n-- Testing strftime() function with a literal % character to format --\n"; 20var_dump( strftime($format) ); 21var_dump( strftime($format, $timestamp) ); 22 23?> 24===DONE=== 25--EXPECT-- 26*** Testing strftime() : usage variation *** 27 28-- Testing strftime() function with a literal % character to format -- 29string(1) "%" 30string(1) "%" 31===DONE=== 32