public function chk_ref() { if (array_key_exists(self::$ref_key, $this->raw)) { $this->id = $this->raw[self::$ref_key]; return true; } $this->id = Core::rand_str(16); $this->raw[self::$ref_key] = $this->id; Type::$dic[$this->id] =& $this->raw; return false; }
function dump_r($raw, $ret = false, $html = true, $depth = 1000.0, $expand = 1000.0) { return Core::dump_r($raw, $ret, $html, $depth, $expand); }