DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Get All Variables Declared In A PHP Script
This will output all declared vars & their assigned values.
$vars = get_defined_vars(); print_r($vars);





