| PHP » GoLang | login |
            register |
            
            about | 
| GoLang QuickHashIntSet::add
                                request it (459)
                            GoLang replacement for PHP's QuickHashIntSet::add
                            [edit | history] 
                             QuickHashIntSet::add(PECL quickhash >= Unknown) QuickHashIntSet::add — This method adds a new entry to the set Description
   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. Parameters
 
 Return Values
    Examples
 Example #1 QuickHashIntSet::add() example 
<?phpThe above example will output something similar to: without dupe checking bool(false) bool(true) bool(true) bool(true) with dupe checking bool(false) bool(true) bool(true) bool(false) | 
                    more
                     Most requested
 
                    more
                     Last requests
 |