Beispiel #1
0
function test()
{
    $x = new System\Collections\Hashtable();
    $y = new System\Collections\Hashtable();
    $x->Add("key", $y);
    $y->Add("message", $y);
    Read($x);
}
Beispiel #2
0
function test()
{
    $x = new System\Collections\Hashtable();
    $y = new System\object();
    $x->Add("obj", $y);
    $x->Add("message", "hello world");
    foreach ($x as $item) {
        print_r($item);
    }
}