update : 2015.11.03
php.shukuma.com

검색:
 
 
Returns the number of elements in the set

QuickHashIntSet::getSize

(PECL quickhash >= Unknown)

QuickHashIntSet::getSizeReturns the number of elements in the set

설명

publicint QuickHashIntSet::getSize ( void )

Returns the number of elements in the set.

인수

key

The key of the entry to add.

반환값

The number of elements in the set.

예제

Example #1 QuickHashIntSet::getSize() example

<?php
$set 
= new QuickHashIntSet);
var_dump$set->add) );
var_dump$set->add) );
var_dump$set->getSize() );
?>

위 예제의 출력 예시:

bool(true)
bool(true)
int(2)