dump_helper: functions to dump variables to the screen, in a nicley formatted manner
<?php | |
/** | |
* Dump helper. Functions to dump variables to the screen, in a nicley formatted manner. | |
* @author Joost van Veen | |
* @version 1.0 | |
*/ | |
if (!function_exists('dump')) { | |
function dump ($var, $label = 'Dump', $echo = TRUE) | |
{ | |
// Store dump in variable | |
ob_start(); | |
var_dump($var); | |
$output = ob_get_clean(); | |
// Add formatting | |
$output = preg_replace("/\]\=\>\n(\s+)/m", "] => ", $output); | |
$output = '<pre style="background: #FFFEEF; color: #000; border: 1px dotted #000; padding: 10px; margin: 10px 0; text-align: left;">' . $label . ' => ' . $output . '</pre>'; | |
// Output | |
if ($echo == TRUE) { | |
echo $output; | |
} | |
else { | |
return $output; | |
} | |
} | |
} | |
if (!function_exists('dump_exit')) { | |
function dump_exit($var, $label = 'Dump', $echo = TRUE) { | |
dump ($var, $label, $echo); | |
exit; | |
} | |
} |
This comment has been minimized.
This comment has been minimized.
Nice peace of code... Thanks! |
This comment has been minimized.
This comment has been minimized.
Thankyou...... |
This comment has been minimized.
This comment has been minimized.
good works |
This comment has been minimized.
This comment has been minimized.
Very nice |
This comment has been minimized.
This comment has been minimized.
thx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Love this little helper... thanks!