Skip to content

Instantly share code, notes, and snippets.

@fearrr
fearrr / dump_helper.php
Last active December 14, 2016 17:46 — forked from accentinteractive/dump_helper.php
dump_helper: functions to dump variables to the screen, in a nicley formatted manner
<?php
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