resourcebundle_countable.phpt 230 B

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