timezone_countEquivalentIDs_error.phpt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --TEST--
  2. IntlTimeZone::countEquivalentIDs(): errors
  3. --SKIPIF--
  4. <?php
  5. if (!extension_loaded('intl'))
  6. die('skip intl extension not enabled');
  7. --FILE--
  8. <?php
  9. ini_set("intl.error_level", E_WARNING);
  10. var_dump(IntlTimeZone::countEquivalentIDs());
  11. var_dump(IntlTimeZone::countEquivalentIDs(array()));
  12. var_dump(IntlTimeZone::countEquivalentIDs("foo\x80"));
  13. var_dump(IntlTimeZone::countEquivalentIDs("foo bar", 7));
  14. --EXPECTF--
  15. Warning: IntlTimeZone::countEquivalentIDs() expects exactly 1 parameter, 0 given in %s on line %d
  16. Warning: IntlTimeZone::countEquivalentIDs(): intltz_count_equivalent_ids: bad arguments in %s on line %d
  17. bool(false)
  18. Warning: IntlTimeZone::countEquivalentIDs() expects parameter 1 to be string, array given in %s on line %d
  19. Warning: IntlTimeZone::countEquivalentIDs(): intltz_count_equivalent_ids: bad arguments in %s on line %d
  20. bool(false)
  21. Warning: IntlTimeZone::countEquivalentIDs(): intltz_count_equivalent_ids: could not convert time zone id to UTF-16 in %s on line %d
  22. bool(false)
  23. Warning: IntlTimeZone::countEquivalentIDs() expects exactly 1 parameter, 2 given in %s on line %d
  24. Warning: IntlTimeZone::countEquivalentIDs(): intltz_count_equivalent_ids: bad arguments in %s on line %d
  25. bool(false)