gmstrftime_variation11.phpt 873 B

123456789101112131415161718192021222324252627
  1. --TEST--
  2. Test gmstrftime() function : usage variation - Checking month related formats which was not supported on Windows before VC14.
  3. --FILE--
  4. <?php
  5. echo "*** Testing gmstrftime() : usage variation ***\n";
  6. // Initialise function arguments not being substituted (if any)
  7. $timestamp = gmmktime(8, 8, 8, 8, 8, 2008);
  8. setlocale(LC_ALL, "en_US");
  9. date_default_timezone_set("Asia/Calcutta");
  10. echo "\n-- Testing gmstrftime() function with Abbreviated month name format %h --\n";
  11. $format = "%h";
  12. var_dump( gmstrftime($format) );
  13. var_dump( gmstrftime($format, $timestamp) );
  14. ?>
  15. --EXPECTF--
  16. *** Testing gmstrftime() : usage variation ***
  17. -- Testing gmstrftime() function with Abbreviated month name format %h --
  18. Deprecated: Function gmstrftime() is deprecated in %s on line %d
  19. string(%d) "%s"
  20. Deprecated: Function gmstrftime() is deprecated in %s on line %d
  21. string(3) "Aug"