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

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

http://github.com/facebook/hiphop-php
PHP | 8 lines | 8 code | 0 blank | 0 comment | 0 complexity | 62a32900e81bc2322aecac46a10b3ec8 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. $tz = IntlTimeZone::createTimeZone('GMT+01:00');
  4. print_r($tz);
  5. $tz = intltz_create_time_zone('GMT+01:00');
  6. print_r($tz);
  7. ?>
  8. ==DONE==