PhpRiot
Follow phpriot on Twitter
Sponsored Link
Become Zend Certified

Prepare for the ZCE exam using our quizzes (web or iPad/iPhone). More info...


When you're ready get 7.5% off your exam voucher using voucher CJQNOV23 at the Zend Store
Free iPad/iPhone App
Available on the App Store

  • PHP manual
  • Zend Framework manual
  • Smarty manual
  • PHP articles
  • PHP training

QuickHashIntSet::delete

(PECL quickhash >= Unknown)

QuickHashIntSet::deleteThis method deletes an entry from the set

Description

public boolean QuickHashIntSet::delete ( integer $key )

This method deletes an entry from the set, and returns whether the entry was deleted or not. Associated memory structures will not be freed immediately, but rather when the set itself is freed.

Parameters

key

The key of the entry to delete.

Return Values

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

Examples

Example #1 QuickHashIntSet::delete() example

<?php
$set 
= new QuickHashIntSet1024 );
var_dump$set->exists) );
var_dump$set->add) );
var_dump$set->delete) );
var_dump$set->exists) );
var_dump$set->delete) );
?>

The above example will output something similar to:

bool(false)
bool(true)
bool(true)
bool(false)
bool(false)

PHP Manual