You are here

public function Parameters::toArray in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/zendframework/zend-stdlib/src/Parameters.php \Zend\Stdlib\Parameters::toArray()

Serialize to native PHP array

Return value

array

Overrides ParametersInterface::toArray

File

vendor/zendframework/zend-stdlib/src/Parameters.php, line 61

Class

Parameters

Namespace

Zend\Stdlib

Code

public function toArray() {
  return $this
    ->getArrayCopy();
}