function test() { $x = new System\Collections\Hashtable(); $y = new System\Collections\Hashtable(); $x->Add("key", $y); $y->Add("message", $y); Read($x); }
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); } }