PageRenderTime 45ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/zend/bad/ext/intl/tests/timezone_getUnknown_basic.php

http://github.com/facebook/hiphop-php
PHP | 10 lines | 9 code | 1 blank | 0 comment | 0 complexity | 23db8ed6464619fc6a79076582159c6a MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?php
  2. ini_set("intl.error_level", E_WARNING);
  3. ini_set("intl.default_locale", "nl");
  4. $tz = IntlTimeZone::getUnknown();
  5. print_r($tz);
  6. $tz = intltz_get_unknown();
  7. print_r($tz);
  8. ?>
  9. ==DONE==