references:joomla.framework:environment:juri-getvarsgetVars
Returns an array with all of the query variables. Syntaxarray getVars () ExamplesExample $uri = new JURI( 'http://forum.joomla.org/index.php?topic=46226&action=new' ); echo "Variables: "; print_r ( $uri->getVars() ); might produce: Result Variables: Array ( [topic] => 46226 [action] => new ) |


