Hi!
Can somebody ask me this question:
I want to use function var_dump($var) in my debug print function.
Something like that:
function DebugPrint($var) {
print "<hr>";
print var_dump($var);
}
This returns something like:
string(32) "8e217a72660b869e756e35e0"
I want to put the actual variable name (i.e. $name) before var_dump, but I cannot understand how to get its name.
So it should be:
$hash: string(32) "8e217a72660b869e756e35e0"
How should I get "$hash" as string?