zend-framework-routing Questions
3
Solved
I'm attempting to create a url with a query string using a route, like so:
$this->url('users') -> /users
$this->url('users', ['sort' => 'desc']) -> /users?sort=desc
However this d...
Photomechanical asked 8/10, 2012 at 15:54
5
Solved
I have an Action method in Foo Controller which requires parameters:
public function fooAction($one, $two) {
$a = one;
$b = $two;
}
And I need to forward to that method from the other method o...
Shebeen asked 7/12, 2012 at 15:27
1
Solved
I want to set a basePath to be the same for every component of my Mvc for a given request. I mean when I call these methods I want to get the same result, lets say '/spam/ham/':
echo $this->hea...
Mcclary asked 20/12, 2012 at 19:1
1
© 2022 - 2024 — McMap. All rights reserved.