gmstrftime_variation21.phpt 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. --TEST--
  2. Test gmstrftime() function : usage variation - Checking Preferred date and time representation on Windows.
  3. --SKIPIF--
  4. <?php
  5. if (strtoupper(substr(PHP_OS, 0, 3)) != 'WIN') {
  6. die("skip Test is valid for Windows");
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. /* Prototype : string gmstrftime(string format [, int timestamp])
  12. * Description: Format a GMT/UCT time/date according to locale settings
  13. * Source code: ext/date/php_date.c
  14. * Alias to functions:
  15. */
  16. echo "*** Testing gmstrftime() : usage variation ***\n";
  17. // Initialise function arguments not being substituted (if any)
  18. $timestamp = gmmktime(8, 8, 8, 8, 8, 2008);
  19. setlocale(LC_ALL, "en_US");
  20. date_default_timezone_set("Asia/Calcutta");
  21. //array of values to iterate over
  22. $inputs = array(
  23. 'Preferred date and time representation' => "%c",
  24. 'Preferred date representation' => "%x",
  25. 'Preferred time representation' => "%X",
  26. );
  27. // loop through each element of the array for timestamp
  28. foreach($inputs as $key =>$value) {
  29. echo "\n--$key--\n";
  30. var_dump( gmstrftime($value) );
  31. var_dump( gmstrftime($value, $timestamp) );
  32. };
  33. ?>
  34. ===DONE===
  35. --EXPECTF--
  36. *** Testing gmstrftime() : usage variation ***
  37. --Preferred date and time representation--
  38. string(%d) "%d/%d/%d %d:%d:%d"
  39. string(17) "08/08/08 08:08:08"
  40. --Preferred date representation--
  41. string(%d) "%d/%d/%d"
  42. string(8) "08/08/08"
  43. --Preferred time representation--
  44. string(%d) "%d:%d:%d"
  45. string(8) "08:08:08"
  46. ===DONE===