SplObjectStorage
PHP Manual

SplObjectStorage::detach

(PHP 5 >= 5.1.0)

SplObjectStorage::detachRemoves an object from the storage

Opis

public void SplObjectStorage::detach ( object $object )

Removes the object from the storage.

Parametry

object

The object to remove.

Zwracane wartości

Nie jest zwracana żadna wartość.

Przykłady

Przykład #1 SplObjectStorage::detach() example

<?php
$o 
= new StdClass;
$s = new SplObjectStorage();
$s->attach($o);
var_dump(count($s));
$s->detach($o);
var_dump(count($s));
?>

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

int(1)
int(0)

Zobacz też:


SplObjectStorage
PHP Manual