mirror of
https://github.com/php/php-src.git
synced 2024-12-03 06:44:07 +08:00
27 lines
475 B
PHP
27 lines
475 B
PHP
--TEST--
|
|
IntlRuleBasedBreakIterator::__construct: basic test
|
|
--FILE--
|
|
<?php
|
|
ini_set("intl.error_level", E_WARNING);
|
|
ini_set("intl.default_locale", "pt_PT");
|
|
|
|
$rules = <<<RULES
|
|
\$LN = [[:letter:] [:number:]];
|
|
\$S = [.;,:];
|
|
|
|
!!forward;
|
|
\$LN+ {1};
|
|
\$S+ {42};
|
|
!!reverse;
|
|
\$LN+ {1};
|
|
\$S+ {42};
|
|
!!safe_forward;
|
|
!!safe_reverse;
|
|
RULES;
|
|
$rbbi = new IntlRuleBasedBreakIterator($rules);
|
|
var_dump(get_class($rbbi));
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
string(26) "IntlRuleBasedBreakIterator"
|
|
==DONE==
|