php-src/ext/intl/tests/cpbi_clone_equality.phpt
Gustavo André dos Santos Lopes 0a7ae87e91 Added IntlCodePointBreakIterator.
Objects of this class can be instantiated with

IntlBreakIterator::createCodePointInstance()

The method does not take a locale, as it would not make sense in this
context.

This class has one additional method:

long IntlCodePointIterator::getLastCodePoint()

which returns either -1 or the last code point we moved over, if any
(and discounting any movement before the last call to
IntlBreakIterator::first() or IntlBreakIterator::last()).
2012-06-22 18:19:54 +02:00

34 lines
617 B
PHP

--TEST--
IntlCodePointBreakIterator: clone and equality
--SKIPIF--
<?php
if (!extension_loaded('intl'))
die('skip intl extension not enabled');
--FILE--
<?php
ini_set("intl.error_level", E_WARNING);
ini_set("intl.default_locale", "pt_PT");
$text = 'ตัวอย่างข้อความ';
$text2 = 'foo';
$it = IntlBreakIterator::createCodePointInstance();
$it->setText($text);
$it_clone = clone $it;
var_dump($it == $it_clone);
$it->setText($text2 );
var_dump($it == $it_clone);
$it_clone->setText($text2);
var_dump($it == $it_clone);
?>
==DONE==
--EXPECT--
bool(true)
bool(false)
bool(true)
==DONE==