QuickHashIntSet::add

(PECL quickhash >= Unknown)

QuickHashIntSet::addThis method adds a new entry to the set

Descrierea

public QuickHashIntSet::add ( int $key ) : bool

This method adds a new entry to the set, and returns whether the entry was added. Entries are by default always added unless QuickHashIntSet::CHECK_FOR_DUPES has been passed when the set was created.

Parametri

key

The key of the entry to add.

Valorile întoarse

TRUE when the entry was added, and FALSE if the entry was not added.

Exemple

Example #1 QuickHashIntSet::add() example

<?php
echo "without dupe checking\n";
$set = new QuickHashIntSet1024 );
var_dump$set->exists) );
var_dump$set->add) );
var_dump$set->exists) );
var_dump$set->add) );

echo 
"\nwith dupe checking\n";
$set = new QuickHashIntSet1024QuickHashIntSet::CHECK_FOR_DUPES );
var_dump$set->exists) );
var_dump$set->add) );
var_dump$set->exists) );
var_dump$set->add) );
?>

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

without dupe checking
bool(false)
bool(true)
bool(true)
bool(true)

with dupe checking
bool(false)
bool(true)
bool(true)
bool(false)