Go to the source code of this file.
Namespaces | |
| namespace | ilias |
Chat base script. | |
Functions | |
| vd () | |
| shortcut for var_dump public | |
| vd | ( | ) |
shortcut for var_dump public
| mixed | any number of parameters |
Definition at line 38 of file inc.debug.php.
{
$numargs = func_num_args();
if ($numargs == 0)
{
return false;
}
$arg_list = func_get_args();
$num = 1;
foreach ($arg_list as $arg)
{
echo "<pre>variable ".$num.":<br/>";
var_dump($arg);
echo "</pre><br/>";
$num++;
}
}
1.7.1