I'm looking for something like the opposite of extract(), and I know its NOT compact().
Say I have a few variables
$state = "FL";
$city = "Hollywood";
$zip = "33021";
How can I make an array that uses the variables' names as the array keys:
array( "state"=>"FL", "city"=>"Hollywood", "zip"=>"33021" );