Just wondering if there was a function that, when called, would echo the status of all variables at that point in time. For insance:
$foo = "bar";
$foo1 = "bar1";
$foo2 = "bar2";
echo_all_var();
and what is output is this.
$foo: bar; $foo1: bar1, etc.
That would be nice to have.