Function Reference: dmp

Summary

This function has not been documented yet.

Source Code

function dmp() {
	$args = func_get_args();

	foreach ($args as $thing)
		echo (is_scalar($thing) ? strval($thing) : var_export($thing, true)), "\n";
}