downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

QuickHashIntSet::__construct> <QuickHashIntSet
[edit] Last updated: Fri, 17 May 2013

view this page in

QuickHashIntSet::add

(PECL quickhash >= Unknown)

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

Descrizione

public bool QuickHashIntSet::add ( int $key )

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.

Elenco dei parametri

key

The key of the entry to add.

Valori restituiti

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

Esempi

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) );
?>

Il precedente esempio visualizzerĂ  qualcosa simile a:

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

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



add a note add a note User Contributed Notes QuickHashIntSet::add - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites