--TEST-- Test gmstrftime() function : usage variation - Passing day related format strings to format argument. --FILE-- "%d", 'Day of the year as a decimal number' => "%j", 'Day of the week as a decimal number' => "%w" ); // loop through each element of the array for timestamp foreach($inputs as $key =>$value) { echo "\n--$key--\n"; var_dump( gmstrftime($value) ); var_dump( gmstrftime($value, $timestamp) ); }; ?> ===DONE=== --EXPECTF-- *** Testing gmstrftime() : usage variation *** --Day of the month as a decimal number-- string(%d) "%d" string(2) "08" --Day of the year as a decimal number-- string(%d) "%d" string(3) "221" --Day of the week as a decimal number-- string(%d) "%d" string(1) "5" ===DONE===