update : 2015.11.03
php.shukuma.com

검색:
 
 
Returns the number of elements in the hash

QuickHashStringIntHash::getSize

(No version information available, might only be in Git)

QuickHashStringIntHash::getSizeReturns the number of elements in the hash

설명

public int QuickHashStringIntHash::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 QuickHashStringIntHash::getSize() example

<?php
$hash 
= new QuickHashStringIntHash);
var_dump$hash->add"two") );
var_dump$hash->add"three") );
var_dump$hash->getSize() );
?>

위 예제의 출력 예시:

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