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

search for in the

Weakref::valid> <Weakref::get
[edit] Last updated: Fri, 17 May 2013

view this page in

Weakref::release

(PECL weakref >= 0.1.0)

Weakref::releaseReleases a previously acquired reference

Descrizione

public bool Weakref::release ( void )

Releases a previously acquired reference. Potentially turning a strong reference back into a weak reference.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns TRUE if the reference was previously acquired and thus could be released, FALSE otherwise.

Esempi

Example #1 Weakref::release() example

<?php
class MyClass {
    public function 
__destruct() {
        echo 
"Destroying object!\n";
    }
}

$o1 = new MyClass;

$r1 = new Weakref($o1);

$r1->acquire();

echo 
"Unsetting o1...\n";
unset(
$o1);

$o2 $r1->get();

$r1->release();

echo 
"Unsetting o2...\n";
unset(
$o2);
?>

Il precedente esempio visualizzerĂ :

Unsetting o1...
Unsetting o2...
Destroying object!

Vedere anche:



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

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