update : 2015.11.03
php.shukuma.com

검색:
 
 
Returns the number of elements in the hash

QuickHashIntStringHash::getSize

(PECL quickhash >= Unknown)

QuickHashIntStringHash::getSizeReturns the number of elements in the hash

설명

public int QuickHashIntStringHash::getSize ( void )

Returns the number of elements in the hash.

반환값

The number of elements in the hash.

예제

Example #1 QuickHashIntStringHash::getSize() example

<?php
$hash 
= new QuickHashIntStringHash);
var_dump$hash->add2"two" ) );
var_dump$hash->add3) );
var_dump$hash->getSize() );
?>

위 예제의 출력 예시:

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