Krumo::phpini PHP Method

phpini() public static method

Prints a list of the configuration settings read from php.ini
public static phpini ( )
    public static function phpini()
    {
        // disabled
        if (!static::_debug()) {
            return false;
        }
        if (!is_readable(get_cfg_var('cfg_file_path'))) {
            return false;
        }
        // render it
        static::heading("This is a list of the configuration settings read from ", get_cfg_var('cfg_file_path'), ".");
        return static::dump(parse_ini_file(get_cfg_var('cfg_file_path'), true));
    }