Unfortunately $_GETS is an associative array anyway - so you cant reference the individual parameters except by name.
You can , however, use array_walk() to extract each variable to another array.
A quick example:
$get_array = array();
function get_parse ($get_item)
{
global $get_array;
$get_array .= $get_item;
}
array_walk($_GET);