update : 2015.11.03
php.shukuma.com

검색:
 
 
Returns the number of elements in the hash

QuickHashIntHash::getSize

(PECL quickhash >= Unknown)

QuickHashIntHash::getSizeReturns the number of elements in the hash

설명

public int QuickHashIntHash::getSize ( void )

Returns the number of elements in the hash.

인수

key

The key of the entry to add.

반환값

The number of elements in the hash.

예제

Example #1 QuickHashIntHash::getSize() example

<?php
$hash 
= new QuickHashIntHash);
var_dump$hash->add) );
var_dump$hash->add3) );
var_dump$hash->getSize() );
?>

위 예제의 출력 예시:

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