array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'tr', ), 'this' => array ( 0 => 'resourcebundle.count.php', 1 => 'ResourceBundle::count', 2 => 'Get number of elements in the bundle', ), 'up' => array ( 0 => 'class.resourcebundle.php', 1 => 'ResourceBundle', ), 'prev' => array ( 0 => 'class.resourcebundle.php', 1 => 'ResourceBundle', ), 'next' => array ( 0 => 'resourcebundle.create.php', 1 => 'ResourceBundle::create', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/intl/resourcebundle/count.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 5 >= 5.3.2, PHP 7, PHP 8, PECL intl >= 2.0.0)
ResourceBundle::count -- resourcebundle_count — Get number of elements in the bundle
Nesne yönelimli kullanım
Yordamsal kullanım
Get the number of elements in the bundle.
Returns number of elements in the bundle.
Örnek 1 resourcebundle_count() example
<?php
$r = resourcebundle_create( 'es', "/usr/share/data/myapp");
echo resourcebundle_count($r);
?>Örnek 2 OO example
<?php
$r = new ResourceBundle( 'es', "/usr/share/data/myapp");
echo $r->count();
?>Yukarıdaki örneğin çıktısı:
42