CI_Profiler::_compile_config PHP Method

_compile_config() protected method

Lists developer config variables
protected _compile_config ( ) : string
return string
    protected function _compile_config()
    {
        $output = array();
        foreach ($this->CI->config->config as $config => $val) {
            if (is_array($val)) {
                $val = print_r($val, TRUE);
            }
            $output[$config] = htmlspecialchars($val);
        }
        return $output;
    }