PHP Conference Japan 2024

ResourceBundle::count

resourcebundle_count

(PHP 5 >= 5.3.2, PHP 7, PHP 8, PECL intl >= 2.0.0)

ResourceBundle::count -- resourcebundle_count获取捆绑包中的元素数量

描述

面向对象风格

public ResourceBundle::count(): int

过程化风格

resourcebundle_count(ResourceBundle $bundle): int

获取捆绑包中的元素数量。

参数

bundle

ResourceBundle 对象。

返回值

返回捆绑包中的元素数量。

示例

示例 #1 resourcebundle_count() 示例

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

示例 #2 OO 示例

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

以上示例将输出

42

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top