Reputation: 37136
Zend talk.I know this basic difference beetwen getQuery and getParam:
getQuery retrieves values from the query string.
getParam retrieve also variables set by the router.
Question: What if I only want to retrieve variables set by the router(not paying attention to the query string)?
thanks
Luca
Upvotes: 0
Views: 262
Reputation: 5834
There's a method getUserParams()
. This retrieves only self set params. Maybe this can help you out.
Upvotes: 1