Welcome Guest, Not a member yet? Register   Sign In
Hosting CI4 on World4You Problem
#8

(This post was last modified: 12-05-2019, 05:47 AM by InsiteFX.)

Here is the code for a pretty var dump place in any helper and load it.

PHP Code:
// -----------------------------------------------------------------------

/**
 * varDebug () - Add this method to a CodeIgniter Helper.
 * -----------------------------------------------------------------------
 *
 * Formatted output of var_dump() etc;
 */
if ( ! function_exists('varDebug'))
{
    /**
     * Debug Helper
     * -------------------------------------------------------------------
     * Outputs the given variable(s) with color formatting and location
     *
     * @param    mixed    - variables to be output
     */
    function varDebug()
    {
        list($callee) = debug_backtrace();

        $arguments func_get_args();

        $totalArguments func_num_args();

        echo '<div><fieldset style="background: #fefefe !important; border:1px red solid; padding:15px">';
        echo '<legend style="background:lightgrey; padding:5px;">'.$callee['file'].' @line: '.$callee['line'].'</legend><pre><code>';

        $i 0;
        foreach ($arguments as $argument)
        {
            echo '<strong>Debug #'.++$i.' of '.$totalArguments.'</strong>: '.'<br>';
            
            
// this cam be changed to print_r() if you prefer that.
            var_dump($argument);
        }

        echo "</code></pre></fieldset><div><br>";

        exit;
    }


Gives a very nice output dump. easy to read.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
Hosting CI4 on World4You Problem - by IVIike - 12-04-2019, 12:13 AM
RE: Hosting CI4 on World4You Problem - by IVIike - 12-04-2019, 04:18 AM
RE: Hosting CI4 on World4You Problem - by IVIike - 12-04-2019, 10:49 PM
RE: Hosting CI4 on World4You Problem - by InsiteFX - 12-05-2019, 05:45 AM
RE: Hosting CI4 on World4You Problem - by MGatner - 12-05-2019, 06:58 AM



Theme © iAndrew 2016 - Forum software by © MyBB