1--TEST-- 2Test ResourceBundle implements Countable 3--EXTENSIONS-- 4intl 5--FILE-- 6<?php 7 include "resourcebundle.inc"; 8 9 $r = new ResourceBundle( 'es', BUNDLE ); 10 11 var_dump($r instanceof Countable); 12?> 13--EXPECT-- 14bool(true) 15