I'm building a sfRoute class and I want to have some parameters in the
url itself and some appended in the query string.
The problem is that I need to access all the parameters in my sfRoute
class.
The following...
public function matchesUrl($url, $context = array())
{
if (false === $parameters = parent::matchesUrl($url, $context))
{
return false;
}
.....
gives me an array of parameters that are in the url body but not the
ones in the query string.
any suggestions please??
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---