3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Zend_Registry extends ArrayObject { /** * Class name of the singleton registry object. * @var string */ private static $_registryClassName = 'Zend_Registry'; /** * Registry object provides storage for shared objects. * @var Zend_Registry */ private static $_registry = null; /** * Retrieves the default registry instance. * * @return Zend_Registry */ public static function getInstance() { if (self::$_registry === null) { self::init(); } return self::$_registry; } /** * Set the default registry instance to a specified instance. * * @param Zend_Registry $registry An object instance of type Zend_Registry, * or a subclass. * @return void * @throws Zend_Exception if registry is already initialized. */ public static function setInstance(Zend_Registry $registry) { if (self::$_registry !== null) { require_once 'Zend/Exception.php'; throw new Zend_Exception('Registry is already initialized'); } self::setClassName(get_class($registry)); self::$_registry = $registry; } /** * Initialize the default registry instance. * * @return void */ protected static function init() { self::setInstance(new self::$_registryClassName()); } /** * Set the class name to use for the default registry instance. * Does not affect the currently initialized instance, it only applies * for the next time you instantiate. * * @param string $registryClassName * @return void * @throws Zend_Exception if the registry is initialized or if the * class name is not valid. */ public static function setClassName($registryClassName = 'Zend_Registry') { if (self::$_registry !== null) { require_once 'Zend/Exception.php'; throw new Zend_Exception('Registry is already initialized'); } if (!is_string($registryClassName)) { require_once 'Zend/Exception.php'; throw new Zend_Exception("Argument is not a class name"); } /** * @see Zend_Loader */ if (!class_exists($registryClassName)) { require_once 'Zend/Loader.php'; Zend_Loader::loadClass($registryClassName); } self::$_registryClassName = $registryClassName; } /** * Unset the default registry instance. * Primarily used in tearDown() in unit tests. * @returns void */ public static function _unsetInstance() { self::$_registry = null; } /** * getter method, basically same as offsetGet(). * * This method can be called from an object of type Zend_Registry, or it * can be called statically. In the latter case, it uses the default * static instance stored in the class. * * @param string $index - get the value associated with $index * @return mixed * @throws Zend_Exception if no entry is registerd for $index. */ public static function get($index) { $instance = self::getInstance(); if (!$instance->offsetExists($index)) { require_once 'Zend/Exception.php'; throw new Zend_Exception("No entry is registered for key '$index'"); } return $instance->offsetGet($index); } /** * setter method, basically same as offsetSet(). * * This method can be called from an object of type Zend_Registry, or it * can be called statically. In the latter case, it uses the default * static instance stored in the class. * * @param string $index The location in the ArrayObject in which to store * the value. * @param mixed $value The object to store in the ArrayObject. * @return void */ public static function set($index, $value) { $instance = self::getInstance(); $instance->offsetSet($index, $value); } /** * Returns TRUE if the $index is a named value in the registry, * or FALSE if $index was not found in the registry. * * @param string $index * @return boolean */ public static function isRegistered($index) { if (self::$_registry === null) { return false; } return self::$_registry->offsetExists($index); } /** * Constructs a parent ArrayObject with default * ARRAY_AS_PROPS to allow acces as an object * * @param array $array data array * @param integer $flags ArrayObject flags */ public function __construct($array = array(), $flags = parent::ARRAY_AS_PROPS) { parent::__construct($array, $flags); } /** * @param string $index * @returns mixed * * Workaround for http://bugs.php.net/bug.php?id=40442 (ZF-960). */ public function offsetExists($index) { return array_key_exists($index, $this); } } $registry = Zend_Registry::getInstance(); $registry['null'] = null; var_dump(isset($registry['null'])); var_dump(Zend_Registry::isRegistered('null'));
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Deprecated: Return type of Zend_Registry::offsetExists($index) should either be compatible with ArrayObject::offsetExists(mixed $key): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/0LFWo on line 176 Fatal error: Uncaught TypeError: array_key_exists(): Argument #2 ($array) must be of type array, Zend_Registry given in /in/0LFWo:178 Stack trace: #0 /in/0LFWo(187): Zend_Registry->offsetExists('null') #1 {main} thrown in /in/0LFWo on line 178
Process exited with code 255.
Output for 8.0.0 - 8.0.30
Fatal error: Uncaught TypeError: array_key_exists(): Argument #2 ($array) must be of type array, Zend_Registry given in /in/0LFWo:178 Stack trace: #0 /in/0LFWo(187): Zend_Registry->offsetExists('null') #1 {main} thrown in /in/0LFWo on line 178
Process exited with code 255.
Output for 7.4.0 - 7.4.33
Deprecated: array_key_exists(): Using array_key_exists() on objects is deprecated. Use isset() or property_exists() instead in /in/0LFWo on line 178 bool(true) Deprecated: array_key_exists(): Using array_key_exists() on objects is deprecated. Use isset() or property_exists() instead in /in/0LFWo on line 178 bool(true)
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.12 - 7.3.33
bool(true) bool(true)
Output for 5.0.4 - 5.0.5
Notice: Use of undefined constant parent::ARRAY_AS_PROPS - assumed 'parent::ARRAY_AS_PROPS' in /in/0LFWo on line 165
Process exited with code 139.
Output for 5.0.0 - 5.0.3
Notice: Use of undefined constant parent::ARRAY_AS_PROPS - assumed 'parent::ARRAY_AS_PROPS' in /in/0LFWo on line 165 Warning: Wrong parameter count for __construct() in /in/0LFWo on line 167 bool(true) bool(true)
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/0LFWo on line 8
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/0LFWo on line 8
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/0LFWo on line 8
Process exited with code 255.

preferences:
186.88 ms | 401 KiB | 314 Q