芝麻web文件管理V1.00
编辑当前文件:/home/p/r/i/prismawe/www/resupres/javascript/ckfinder/core/connector/php/php4/Core/Registry.php
_store); } /** * Set value * * @param string $key * @param mixed $obj * @access public */ function set($key, $obj) { $this->_store[$key] = $obj; } /** * Get value * * @param string $key * @return mixed * @access public */ function get($key) { if ($this->isValid($key)) { return $this->_store[$key]; } } }