当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ArrayObject count()用法及代码示例


ArrayObject::count()函数是PHP中的内置函数,用于获取ArrayObject中公共属性的数量。

用法:

int ArrayObject::count( void )

参数:该函数不接受任何参数。


返回值:此函数返回ArrayObject中公共属性的数量。

以下示例程序旨在说明PHP中的ArrayObject::count()函数:

示例1:

<?php  
// PHP program to illustrate the  
// ArrayObject::count() function  
  
// Declare an array and convert it 
// into array object 
$arrObject = new ArrayObject( 
    array('Geeks', 'for', 'Geeks') 
);  
  
// Use ArrayObject::count() function 
// to count the number of public 
// properties in the ArrayObject 
$count = $arrObject->count();  
  
print_r($count);  
  
?> 
输出:
3

示例2:

<?php  
// PHP program to illustrate the  
// ArrayObject::count() function  
  
// Declare an associative array 
$arr = array( 
    "a" => "Welcome", 
    "b" => "to",  
    "c" => "GeeksforGeeks"
);  
  
// Create into array object  
$arrObject = new ArrayObject($arr);  
  
// Use ArrayObject::count() function 
// to count the number of public 
// properties in the ArrayObject 
$count = $arrObject->count();  
  
print_r($count);  
  
?> 
输出:
3

参考: https://www.php.net/manual/en/arrayobject.count.php



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | ArrayObject count() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。