Skip to content

Instantly share code, notes, and snippets.

@magickatt
Last active January 3, 2016 07:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magickatt/8427282 to your computer and use it in GitHub Desktop.
Save magickatt/8427282 to your computer and use it in GitHub Desktop.
Query-based parameters in Zend Framework 2 view helper
<?php
// Output the URL in the view
echo $this->url('somewhere',
array('controller' => 'company',
'action'=>'edit'
),
array('query' =>
array('id' => $company->id)
)
);
// Access the corresponding parameter in a controller
$this->params()->fromQuery('id');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment