timezone_IDforWindowsID_basic2.phpt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --TEST--
  2. IntlTimeZone::getIDForWindowsID basic test
  3. --SKIPIF--
  4. <?php
  5. if (!extension_loaded('intl'))
  6. die('skip intl extension not enabled'); ?>
  7. <?php if (version_compare(INTL_ICU_VERSION, '58.1') < 0) die('skip for ICU >= 58.1'); ?>
  8. --FILE--
  9. <?php
  10. $tzs = array(
  11. 'Gnomeregan' => array(NULL),
  12. 'India Standard Time' => array(NULL),
  13. 'Pacific Standard Time' => array('001', 'CA', 'MX', 'US', 'ZZ'),
  14. 'Romance Standard Time' => array('001', 'BE', 'DK', 'ES', 'FR'),
  15. );
  16. foreach ($tzs as $tz => $regions) {
  17. echo "** $tz\n";
  18. foreach ($regions as $region) {
  19. var_dump(IntlTimeZone::getIDForWindowsID($tz, $region));
  20. if (intl_get_error_code() != U_ZERO_ERROR) {
  21. echo "Error: ", intl_get_error_message(), "\n";
  22. }
  23. }
  24. }
  25. --EXPECT--
  26. ** Gnomeregan
  27. bool(false)
  28. Error: intltz_get_windows_id: Unknown windows timezone: U_ILLEGAL_ARGUMENT_ERROR
  29. ** India Standard Time
  30. string(13) "Asia/Calcutta"
  31. ** Pacific Standard Time
  32. string(19) "America/Los_Angeles"
  33. string(17) "America/Vancouver"
  34. string(19) "America/Los_Angeles"
  35. string(19) "America/Los_Angeles"
  36. string(7) "PST8PDT"
  37. ** Romance Standard Time
  38. string(12) "Europe/Paris"
  39. string(15) "Europe/Brussels"
  40. string(17) "Europe/Copenhagen"
  41. string(13) "Europe/Madrid"
  42. string(12) "Europe/Paris"