rbbiter_getRuleStatusVec_basic.phpt 849 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. --TEST--
  2. IntlRuleBasedBreakIterator::getRuleStatusVec(): basic test
  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. ini_set("intl.default_locale", "pt_PT");
  11. $rules = <<<RULES
  12. \$LN = [[:letter:] [:number:]];
  13. \$S = [.;,:];
  14. !!forward;
  15. \$LN+ {1};
  16. [^.]+ {4};
  17. \$S+ {42};
  18. !!reverse;
  19. \$LN+ {1};
  20. [^.]+ {4};
  21. \$S+ {42};
  22. !!safe_forward;
  23. !!safe_reverse;
  24. RULES;
  25. $rbbi = new IntlRuleBasedBreakIterator($rules);
  26. $rbbi->setText('sdfkjsdf88á.... ,;');
  27. do {
  28. var_dump($rbbi->current(), $rbbi->getRuleStatusVec());
  29. } while ($rbbi->next() != IntlBreakIterator::DONE);
  30. ?>
  31. ==DONE==
  32. --EXPECT--
  33. int(0)
  34. array(1) {
  35. [0]=>
  36. int(0)
  37. }
  38. int(12)
  39. array(2) {
  40. [0]=>
  41. int(1)
  42. [1]=>
  43. int(4)
  44. }
  45. int(16)
  46. array(1) {
  47. [0]=>
  48. int(42)
  49. }
  50. int(19)
  51. array(1) {
  52. [0]=>
  53. int(4)
  54. }
  55. ==DONE==