You are here

public function Parameters::offsetGet in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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

Parameters

Namespace

Zend\Stdlib

Code

public function offsetGet($name) {
  if ($this
    ->offsetExists($name)) {
    return parent::offsetGet($name);
  }
  return;
}