QuickHashIntSet
PHP Manual

QuickHashIntSet::getSize

(PECL quickhash >= Unknown)

QuickHashIntSet::getSize — Returns the number of elements in the set

Opis

publicint QuickHashIntSet::getSize ( void )

Returns the number of elements in the set.

Parametry

key

The key of the entry to add.

Zwracane wartości

The number of elements in the set.

Przykłady

Przykład #1 QuickHashIntSet::getSize() example

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

Powyższy przykład wyświetli coś podobnego do:

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


QuickHashIntSet
PHP Manual