mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

This is effectively removing ZPP tests, enabling warnings, and moving INI settings into the INI PHPT block
39 lines
658 B
PHP
39 lines
658 B
PHP
--TEST--
|
|
IntlBreakIterator::createCodePointInstance(): basic test
|
|
--EXTENSIONS--
|
|
intl
|
|
--INI--
|
|
intl.default_locale=pt_PT
|
|
--FILE--
|
|
<?php
|
|
|
|
$text = 'ตัวอย่างข้อความ';
|
|
|
|
$codepoint_it = IntlBreakIterator::createCodePointInstance();
|
|
var_dump(get_class($codepoint_it));
|
|
$codepoint_it->setText($text);
|
|
|
|
print_r(iterator_to_array($codepoint_it));
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(26) "IntlCodePointBreakIterator"
|
|
Array
|
|
(
|
|
[0] => 0
|
|
[1] => 3
|
|
[2] => 6
|
|
[3] => 9
|
|
[4] => 12
|
|
[5] => 15
|
|
[6] => 18
|
|
[7] => 21
|
|
[8] => 24
|
|
[9] => 27
|
|
[10] => 30
|
|
[11] => 33
|
|
[12] => 36
|
|
[13] => 39
|
|
[14] => 42
|
|
[15] => 45
|
|
)
|