QuickHashIntStringHash
PHP Manual

QuickHashIntStringHash::getSize

(PECL quickhash >= Unknown)

QuickHashIntStringHash::getSize — Returns the number of elements in the hash

Descrierea

public int QuickHashIntStringHash::getSize ( void )

Returns the number of elements in the hash.

Valorile întoarse

The number of elements in the hash.

Exemple

Example #1 QuickHashIntStringHash::getSize() example

<?php
$hash 
= new QuickHashIntStringHash( 8 );
var_dump( $hash->add( 2, "two" ) );
var_dump( $hash->add( 3, 5 ) );
var_dump( $hash->getSize() );
?>

Exemplul de mai sus va afișa ceva similar cu:

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


QuickHashIntStringHash
PHP Manual