(PHP 5 >= 5.3.2, PHP 7, PHP 8, PECL intl >= 2.0.0)
ResourceBundle::count -- resourcebundle_count — 取得資源包中的元素數量
物件導向風格
程序式風格
取得資源包中的元素數量。
回傳資源包中的元素數量。
範例 #1 resourcebundle_count() 範例
<?php
$r = resourcebundle_create( 'es', "/usr/share/data/myapp");
echo resourcebundle_count($r);
?>
範例 #2 物件導向範例
<?php
$r = new ResourceBundle( 'es', "/usr/share/data/myapp");
echo $r->count();
?>
上述範例將輸出
42