public function Parameters::offsetGet in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-stdlib/src/Parameters.php \Zend\Stdlib\Parameters::offsetGet()
Retrieve by key
Returns null if the key does not exist.
Parameters
string $name:
Return value
mixed
File
- vendor/
zendframework/ zend-stdlib/ src/ Parameters.php, line 84
Class
Namespace
Zend\StdlibCode
public function offsetGet($name) {
if ($this
->offsetExists($name)) {
return parent::offsetGet($name);
}
return;
}