Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- How does Zend Registry work [closed]
- Zend_Registry::set('test', array());
- class My_Registry
- {
- static $storage;
- public static function set($key,$value)
- {
- self::$storage[$key] = $value;
- }
- public static function get($key)
- {
- return self::$storage[$key];
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment