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

search for in the

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

view this page in

Weakref::__construct

(PECL weakref >= 0.1.0)

Weakref::__constructConstructs a new weak reference

Descrierea

public Weakref::__construct() ([ object $object ] )

Constructs a new weak reference.

Parametri

object

The object to reference.

Valorile întoarse

Nu este întoarsă nici o valoare.

Exemple

Example #1 Weakref::__construct() example

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

$o1 = new MyClass;

$r1 = new Weakref($o1);

if (
$r1->valid()) {
    echo 
"Object still exists!\n";
    
var_dump($r1->get());
} else {
    echo 
"Object is dead!\n";
}

unset(
$o1);

if (
$r1->valid()) {
    echo 
"Object still exists!\n";
    
var_dump($r1->get());
} else {
    echo 
"Object is dead!\n";
}
?>

Exemplul de mai sus va afișa:

Object still exists!
object(MyClass)#1 (0) {
}
Destroying object!
Object is dead!



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

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