PHP - Ds Set count() 函数



PHP 的 Ds\Set::count() 函数用于检索当前集合中存在的元素数量,也称为集合实例的大小。

此函数类似于其他编程语言中的 size()length() 方法。

语法

以下是 PHP Ds\Set::count() 函数的语法:

public int Ds\Set::count()

参数

此函数不接受任何参数。

返回值

此函数返回当前集合中存在的元素数量。

示例 1

以下是 PHP Ds\Set::count() 函数的基本示例。

<?php
   $set = new \Ds\Set([1, 2, 3]);
   echo "The set elements are: \n";
   print_r($set);
   echo "The number of elements of set: ";
   print_r($set->count());
?>

输出

以上程序产生以下输出:

The set elements are:
Ds\Set Object
(
    [0] => 1
    [1] => 2
    [2] => 3
)
The number of elements of set: 3

示例 2

以下是 PHP Ds\Set::count() 函数的另一个示例。我们使用此函数计算此集合中存在的元素数量。

<?php
   $set = new \Ds\Set(["a", "e", "i", "o", "u"]);
   echo "The elements are: \n";
   print_r($set);
   echo "The number of elements: ";
   print_r($set->count());
?>

输出

执行以上示例后,将显示以下输出:

The elements are:
Ds\Set Object
(
    [0] => a
    [1] => e
    [2] => i
    [3] => o
    [4] => u
)
The number of elements: 5
php_function_reference.htm
广告