PageRenderTime 43ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/zend/good/ext/intl/tests/breakiter_createCodePointInstance_basic.php

http://github.com/facebook/hiphop-php
PHP | 15 lines | 12 code | 3 blank | 0 comment | 0 complexity | c501ad2ad11c8164dc769539dc1efd2c 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. <?hh
  2. <<__EntryPoint>>
  3. function main_entry(): void {
  4. ini_set("intl.error_level", E_WARNING);
  5. ini_set("intl.default_locale", "pt_PT");
  6. $text = 'ตัวอย่างข้อความ';
  7. $codepoint_it = IntlBreakIterator::createCodePointInstance();
  8. var_dump(get_class($codepoint_it));
  9. $codepoint_it->setText($text);
  10. print_r(iterator_to_array($codepoint_it));
  11. echo "==DONE==";
  12. }