ResourceBundle
PHP Manual

ResourceBundle::count

resourcebundle_count

(No version information available, might only be in SVN)

ResourceBundle::count -- resourcebundle_countGet number of elements in the bundle

Descripción

Object oriented style

int ResourceBundle::count ( void )

Procedural style

int resourcebundle_count ( ResourceBundle $r )

Get the number of elements in the bundle.

Parámetros

r

ResourceBundle object.

Valores devueltos

Returns number of elements in the bundle.

Ejemplos

Example #1 resourcebundle_count() example

<?php
$r 
resourcebundle_create'es'"/usr/share/data/myapp");
echo 
resourcebundle_count($r);
?>

Example #2 OO example

<?php
$r 
= new ResourceBundle'es'"/usr/share/data/myapp");
echo 
$r->count();
?>

El resultado del ejemplo sería:

42

Ver también


ResourceBundle
PHP Manual