Ds\Set::count() 函數可用於計算集合中存在的值的數量,也稱為集合實例的大小。
用法
public int Ds\Set::count()
Ds\Set::count() 函數沒有任何參數。
Ds\Set::count() 函數可以返回集合中存在的值的數量。
例子1
<?php
$set = new \Ds\Set([10, 15, 20, 25]);
var_dump($set);
echo "The count is:";
print_r($set->count());
?>
例子2
>?php
$set = new \Ds\Set(["Tutorials", "Point", "India"]);
var_dump($set);
echo "The count is:";
print_r($set->count());
?>
相關用法
- PHP Ds Set contains()用法及代碼示例
- PHP Ds Set capacity()用法及代碼示例
- PHP Ds Set intersect()用法及代碼示例
- PHP Ds Set remove()用法及代碼示例
- PHP Ds Set toArray()用法及代碼示例
- PHP Ds Set slice()用法及代碼示例
- PHP Ds Set sort()用法及代碼示例
- PHP Ds Set merge()用法及代碼示例
- PHP Ds Set reduce()用法及代碼示例
- PHP Ds Set reversed()用法及代碼示例
- PHP Ds Set filter()用法及代碼示例
- PHP Ds Set add()用法及代碼示例
- PHP Ds Set join()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Ds Set count() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。