blob: bacc18f10ce7c3e0e0a699e90caa649f40c0ddfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--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)
|