/**
* @desc show the variable that are to be excluded from the list.
* $varList array
* $excludeList array
*/
function logVars($varList, $excludeList = null) {
if ($excludeList == null)
$excludeList = array('GLOBALS', '_FILES', '_COOKIE', '_POST', '_GET');
$list = array();
foreach ($varList as $key => $value) {
if (!in_array($key, $excludeList))
$list[$key] = $value;
}
echo '<pre>';
print_r($list);
echo '</pre>';
}
//some dummy variables; add your own or include a file.
$firstName = 'kailash';
$lastName = 'Badu';
$test = array('Pratistha', 'sanu', 'fuchhi');