Mostrando entradas con la etiqueta helper. Mostrar todas las entradas
Mostrando entradas con la etiqueta helper. Mostrar todas las entradas

jueves, 19 de diciembre de 2013

codeigniter debug helper

Little helper to print_r variables with pre

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

if ( ! function_exists('pr'))
{
    function pr($thing)
    {
        echo '<pre>';
        var_dump($thing);
        echo '</pre>';
        die();        
    }   
}