mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
24 lines
447 B
PHP
24 lines
447 B
PHP
--TEST--
|
|
Bug #55610: ResourceBundle does not implement Traversable
|
|
--SKIPIF--
|
|
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
|
|
--FILE--
|
|
<?php
|
|
include "resourcebundle.inc";
|
|
|
|
$r = new ResourceBundle( 'es', BUNDLE );
|
|
|
|
var_dump($r instanceof Traversable);
|
|
var_dump(iterator_to_array($r->get('testarray')));
|
|
?>
|
|
--EXPECTF--
|
|
bool(true)
|
|
array(3) {
|
|
[0]=>
|
|
string(8) "cadena 1"
|
|
[1]=>
|
|
string(8) "cadena 2"
|
|
[2]=>
|
|
string(8) "cadena 3"
|
|
}
|