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/8427248 to your computer and use it in GitHub Desktop.
Save magickatt/8427248 to your computer and use it in GitHub Desktop.
Route-based parameters in Zend Framework 2 view helper
<?php
// Output the URL in the view
echo $this->url('somewhere',
array('controller' => 'company',
'action'=>'edit',
'id' => $company->id
)
);
// Access the corresponding parameter in a controller
$this->params()->fromRoute('id');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment