Weakref::acquire

(PECL weakref >= 0.1.0)
Acquires a strong reference on that object
public bool Weakref::acquire ( void )

Acquires a strong reference on that object, virtually turning the weak reference into a strong one.

The Weakref instance maintains an internal acquired counter to track outstanding strong references. If the call to Weakref::acquire() is successful, this counter will be incremented by one.

Returns:

Returns TRUE if the reference was valid and could be turned into a strong reference, FALSE otherwise.

Examples:
Weakref::acquire() example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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);
?>

The above example will output:

Unsetting o1...
Unsetting o2...
Destroying object!
Nested acquire/release example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
class MyClass {
    public function __destruct() {
        echo "Destroying object!\n";
    }
}
 
$o1 new MyClass;
 
$r1 new Weakref($o1);
 
echo "Acquiring...\n";
$r1->acquire();
 
echo "  Unsetting...\n";
unset($o1);
 
echo "  Acquiring...\n";
$r1->acquire();
 
echo "    Acquiring...\n";
$r1->acquire();
 
echo "    Releasing...\n";
$r1->release();
 
echo "  Releasing...\n";
$r1->release();
 
echo "Releasing...\n";
$r1->release();
 
?>

The above example will output:

Acquiring...
  Unsetting...
  Acquiring...
    Acquiring...
    Releasing...
  Releasing...
Releasing...
Destroying object!
See also:

Weakref::release() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.