(PHP > 5.4.0)
ResourceBundle::count -- resourcebundle_count — Get number of elements in the bundle
Объектно-ориентированный стиль
Процедурный стиль
Get the number of elements in the bundle.
ResourceBundle object.
Returns number of elements in the bundle.
Пример #1 resourcebundle_count() example
<?php$r = resourcebundle_create( 'es', "/usr/share/data/myapp");echo resourcebundle_count($r);?>
Пример #2 OO example
<?php$r = new ResourceBundle( 'es', "/usr/share/data/myapp");echo $r->count();?>
Результат выполнения данного примера:
42