1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 21:11:02 +02:00
Files
archived-php-src/ext/intl/tests/resourcebundle_countable.phpt
2020-02-03 22:52:20 +01:00

15 lines
278 B
PHP

--TEST--
Test ResourceBundle implements Countable
--SKIPIF--
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
--FILE--
<?php
include "resourcebundle.inc";
$r = new ResourceBundle( 'es', BUNDLE );
var_dump($r instanceof Countable);
?>
--EXPECT--
bool(true)