The WeakMap class

(PECL weakref >= 0.2.0)

简介

类摘要

WeakMap implements Countable , ArrayAccess , Iterator {
/* 方法 */
public __construct ( void )
public count ( void ) : int
public current ( void ) : mixed
public key ( void ) : object
public next ( void ) : void
public offsetExists ( object $object ) : bool
public offsetGet ( object $object ) : mixed
public offsetSet ( object $object , mixed $value ) : void
public offsetUnset ( object $object ) : void
public rewind ( void ) : void
public valid ( void ) : bool
}

范例

Example #1 Weakmap usage example

<?php
$wm 
= new WeakMap();

$o = new StdClass;

class 
{
    public function 
__destruct() {
        echo 
"Dead!\n";
    }
}

$wm[$o] = new A;

var_dump(count($wm));
echo 
"Unsetting..\n";
unset(
$o);
echo 
"Done\n";
var_dump(count($wm));

以上例程会输出:

int(1)
Unsetting..
Dead!
Done
int(0)

Table of Contents