Skip to content

Instantly share code, notes, and snippets.

@tristar500
Created March 18, 2012 19:45
Show Gist options
  • Save tristar500/2080312 to your computer and use it in GitHub Desktop.
Save tristar500/2080312 to your computer and use it in GitHub Desktop.
Debug Helper
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
// --------------------------------------------------------------------
if(!function_exists('vardump'))
{
function vardump($text='',$theVar)
{
echo '<pre>';
echo $text . ': ';
var_dump($theVar);
echo '</pre>';
}
}
// --------------------------------------------------------------------
if(!function_exists('printr'))
{
function printr($text='',$theVar)
{
echo '<pre>';
echo $text . ': ';
print_r($theVar);
echo '</pre>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment