php-src/ext/unicode/tests/textiterator_getall_001.phpt
2008-09-12 17:30:53 +00:00

21 lines
244 B
PHP

--TEST--
TextIterator::getAll(): Simple test
--FILE--
<?php
$x = new textiterator('asda');
var_dump($x->getAll());
?>
--EXPECT--
array(4) {
[0]=>
unicode(1) "a"
[1]=>
unicode(1) "s"
[2]=>
unicode(1) "d"
[3]=>
unicode(1) "a"
}