====== getVars ====== {#JAPI Joomla.Framework Environment JURI::getVars #} Returns an array with all of the query variables. ===== Syntax ===== array getVars () ===== Examples ===== $uri = new JURI( 'http://forum.joomla.org/index.php?topic=46226&action=new' ); echo "Variables: "; print_r ( $uri->getVars() ); might produce: Variables: Array ( [topic] => 46226 [action] => new )