| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * CodeIgniter | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * An open source application development framework for PHP | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * This content is released under the MIT License (MIT) | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  |  * Copyright (c) 2014 - 2019, British Columbia Institute of Technology | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | 
					
						
							|  |  |  |  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package	CodeIgniter | 
					
						
							|  |  |  |  * @author	EllisLab Dev Team | 
					
						
							|  |  |  |  * @copyright	Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/) | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  |  * @copyright	Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/) | 
					
						
							|  |  |  |  * @license	https://opensource.org/licenses/MIT	MIT License | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * @link	https://codeigniter.com | 
					
						
							|  |  |  |  * @since	Version 1.0.0 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  |  * @filesource | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | defined('BASEPATH') OR exit('No direct script access allowed'); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * CodeIgniter Profiler Class | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This class enables you to display benchmark, query, and other data | 
					
						
							|  |  |  |  * in order to help with debugging and optimization. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Note: At some point it would be good to move all the HTML in this class | 
					
						
							|  |  |  |  * into a set of template files in order to allow customization. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package		CodeIgniter | 
					
						
							|  |  |  |  * @subpackage	Libraries | 
					
						
							|  |  |  |  * @category	Libraries | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * @author		EllisLab Dev Team | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  |  * @link		https://codeigniter.com/userguide3/general/profiling.html | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | class CI_Profiler { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * List of profiler sections available to show | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var array | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	protected $_available_sections = array( | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		'benchmarks', | 
					
						
							|  |  |  | 		'get', | 
					
						
							|  |  |  | 		'memory_usage', | 
					
						
							|  |  |  | 		'post', | 
					
						
							|  |  |  | 		'uri_string', | 
					
						
							|  |  |  | 		'controller_info', | 
					
						
							|  |  |  | 		'queries', | 
					
						
							|  |  |  | 		'http_headers', | 
					
						
							|  |  |  | 		'session_data', | 
					
						
							|  |  |  | 		'config' | 
					
						
							|  |  |  | 	); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Number of queries to show before making the additional queries togglable | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var int | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected $_query_toggle_count = 25; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Reference to the CodeIgniter singleton | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var object | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected $CI; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Class constructor | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Initialize Profiler | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param	array	$config	Parameters | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	public function __construct($config = array()) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		$this->CI =& get_instance(); | 
					
						
							|  |  |  | 		$this->CI->load->language('profiler'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// default all sections to display
 | 
					
						
							|  |  |  | 		foreach ($this->_available_sections as $section) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			if ( ! isset($config[$section])) | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 				$this->{'_compile_'.$section} = TRUE; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$this->set_sections($config); | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		log_message('info', 'Profiler Class Initialized'); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Set Sections | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Sets the private _compile_* properties to enable/disable Profiler sections | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	mixed	$config | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * @return	void | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	public function set_sections($config) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if (isset($config['query_toggle_count'])) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$this->_query_toggle_count = (int) $config['query_toggle_count']; | 
					
						
							|  |  |  | 			unset($config['query_toggle_count']); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		foreach ($config as $method => $enable) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			if (in_array($method, $this->_available_sections)) | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 				$this->{'_compile_'.$method} = ($enable !== FALSE); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Auto Profiler | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * This function cycles through the entire array of mark points and | 
					
						
							|  |  |  | 	 * matches any two points that are named identically (ending in "_start" | 
					
						
							|  |  |  | 	 * and "_end" respectively).  It then compiles the execution times for | 
					
						
							|  |  |  | 	 * all points and returns it as an array | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	array | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected function _compile_benchmarks() | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		$profile = array(); | 
					
						
							|  |  |  | 		foreach ($this->CI->benchmark->marker as $key => $val) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			// We match the "end" marker so that the list ends
 | 
					
						
							|  |  |  | 			// up in the order that it was defined
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			if (preg_match('/(.+?)_end$/i', $key, $match) | 
					
						
							|  |  |  | 				&& isset($this->CI->benchmark->marker[$match[1].'_end'], $this->CI->benchmark->marker[$match[1].'_start'])) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				$profile[$match[1]] = $this->CI->benchmark->elapsed_time($match[1].'_start', $key); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Build a table containing the profile data.
 | 
					
						
							|  |  |  | 		// Note: At some point we should turn this into a template that can
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		// be modified. We also might want to make this data available to be logged
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$output = "\n\n" | 
					
						
							|  |  |  | 			.'<fieldset id="ci_profiler_benchmarks" style="border:1px solid #900;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' | 
					
						
							|  |  |  | 			."\n" | 
					
						
							|  |  |  | 			.'<legend style="color:#900;">  '.$this->CI->lang->line('profiler_benchmarks')."  </legend>" | 
					
						
							|  |  |  | 			."\n\n\n<table style=\"width:100%;\">\n"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		foreach ($profile as $key => $val) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$key = ucwords(str_replace(array('_', '-'), ' ', $key)); | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$output .= '<tr><td style="padding:5px;width:50%;color:#000;font-weight:bold;background-color:#ddd;">' | 
					
						
							|  |  |  | 					.$key.'  </td><td style="padding:5px;width:50%;color:#900;font-weight:normal;background-color:#ddd;">' | 
					
						
							|  |  |  | 					.$val."</td></tr>\n"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return $output."</table>\n</fieldset>"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Compile Queries | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	string | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected function _compile_queries() | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		$dbs = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Let's determine which databases are currently connected to
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		foreach (get_object_vars($this->CI) as $name => $cobject) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			if (is_object($cobject)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				if ($cobject instanceof CI_DB) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					$dbs[get_class($this->CI).':$'.$name] = $cobject; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				elseif ($cobject instanceof CI_Model) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					foreach (get_object_vars($cobject) as $mname => $mobject) | 
					
						
							|  |  |  | 					{ | 
					
						
							|  |  |  | 						if ($mobject instanceof CI_DB) | 
					
						
							|  |  |  | 						{ | 
					
						
							|  |  |  | 							$dbs[get_class($cobject).':$'.$mname] = $mobject; | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if (count($dbs) === 0) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			return "\n\n" | 
					
						
							|  |  |  | 				.'<fieldset id="ci_profiler_queries" style="border:1px solid #0000FF;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' | 
					
						
							|  |  |  | 				."\n" | 
					
						
							|  |  |  | 				.'<legend style="color:#0000FF;">  '.$this->CI->lang->line('profiler_queries').'  </legend>' | 
					
						
							|  |  |  | 				."\n\n\n<table style=\"border:none; width:100%;\">\n" | 
					
						
							|  |  |  | 				.'<tr><td style="width:100%;color:#0000FF;font-weight:normal;background-color:#eee;padding:5px;">' | 
					
						
							|  |  |  | 				.$this->CI->lang->line('profiler_no_db') | 
					
						
							|  |  |  | 				."</td></tr>\n</table>\n</fieldset>"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Load the text helper so we can highlight the SQL
 | 
					
						
							|  |  |  | 		$this->CI->load->helper('text'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Key words we want bolded
 | 
					
						
							|  |  |  | 		$highlight = array('SELECT', 'DISTINCT', 'FROM', 'WHERE', 'AND', 'LEFT JOIN', 'ORDER BY', 'GROUP BY', 'LIMIT', 'INSERT', 'INTO', 'VALUES', 'UPDATE', 'OR ', 'HAVING', 'OFFSET', 'NOT IN', 'IN', 'LIKE', 'NOT LIKE', 'COUNT', 'MAX', 'MIN', 'ON', 'AS', 'AVG', 'SUM', '(', ')'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$output  = "\n\n"; | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$count = 0; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		foreach ($dbs as $name => $db) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$hide_queries = (count($db->queries) > $this->_query_toggle_count) ? ' display:none' : ''; | 
					
						
							|  |  |  | 			$total_time = number_format(array_sum($db->query_times), 4).' '.$this->CI->lang->line('profiler_seconds'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			$show_hide_js = '(<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_queries_db_'.$count.'\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_hide').'\'?\''.$this->CI->lang->line('profiler_section_show').'\':\''.$this->CI->lang->line('profiler_section_hide').'\';">'.$this->CI->lang->line('profiler_section_hide').'</span>)'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if ($hide_queries !== '') | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$show_hide_js = '(<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_queries_db_'.$count.'\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_show').'\'?\''.$this->CI->lang->line('profiler_section_hide').'\':\''.$this->CI->lang->line('profiler_section_show').'\';">'.$this->CI->lang->line('profiler_section_show').'</span>)'; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$output .= '<fieldset style="border:1px solid #0000FF;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' | 
					
						
							|  |  |  | 				."\n" | 
					
						
							|  |  |  | 				.'<legend style="color:#0000FF;">  '.$this->CI->lang->line('profiler_database') | 
					
						
							|  |  |  | 				.':  '.$db->database.' ('.$name.')   '.$this->CI->lang->line('profiler_queries') | 
					
						
							|  |  |  | 				.': '.count($db->queries).' ('.$total_time.')  '.$show_hide_js."</legend>\n\n\n" | 
					
						
							|  |  |  | 				.'<table style="width:100%;'.$hide_queries.'" id="ci_profiler_queries_db_'.$count."\">\n"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (count($db->queries) === 0) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				$output .= '<tr><td style="width:100%;color:#0000FF;font-weight:normal;background-color:#eee;padding:5px;">' | 
					
						
							|  |  |  | 						.$this->CI->lang->line('profiler_no_queries')."</td></tr>\n"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				foreach ($db->queries as $key => $val) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					$time = number_format($db->query_times[$key], 4); | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 					$val = highlight_code($val); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					foreach ($highlight as $bold) | 
					
						
							|  |  |  | 					{ | 
					
						
							|  |  |  | 						$val = str_replace($bold, '<strong>'.$bold.'</strong>', $val); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 					$output .= '<tr><td style="padding:5px;vertical-align:top;width:1%;color:#900;font-weight:normal;background-color:#ddd;">' | 
					
						
							|  |  |  | 							.$time.'  </td><td style="padding:5px;color:#000;font-weight:normal;background-color:#ddd;">' | 
					
						
							|  |  |  | 							.$val."</td></tr>\n"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$output .= "</table>\n</fieldset>"; | 
					
						
							|  |  |  | 			$count++; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return $output; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Compile $_GET Data | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	string | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected function _compile_get() | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$output = "\n\n" | 
					
						
							|  |  |  | 			.'<fieldset id="ci_profiler_get" style="border:1px solid #cd6e00;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' | 
					
						
							|  |  |  | 			."\n" | 
					
						
							|  |  |  | 			.'<legend style="color:#cd6e00;">  '.$this->CI->lang->line('profiler_get_data')."  </legend>\n"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if (count($_GET) === 0) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$output .= '<div style="color:#cd6e00;font-weight:normal;padding:4px 0 4px 0;">'.$this->CI->lang->line('profiler_no_get').'</div>'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$output .= "\n\n<table style=\"width:100%;border:none;\">\n"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			foreach ($_GET as $key => $val) | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				is_int($key) OR $key = "'".htmlspecialchars($key, ENT_QUOTES, config_item('charset'))."'"; | 
					
						
							|  |  |  | 				$val = (is_array($val) OR is_object($val)) | 
					
						
							|  |  |  | 					? '<pre>'.htmlspecialchars(print_r($val, TRUE), ENT_QUOTES, config_item('charset')).'</pre>' | 
					
						
							|  |  |  | 					: htmlspecialchars($val, ENT_QUOTES, config_item('charset')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				$output .= '<tr><td style="width:50%;color:#000;background-color:#ddd;padding:5px;">$_GET[' | 
					
						
							|  |  |  | 					.$key.']   </td><td style="width:50%;padding:5px;color:#cd6e00;font-weight:normal;background-color:#ddd;">' | 
					
						
							|  |  |  | 					.$val."</td></tr>\n"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			$output .= "</table>\n"; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return $output.'</fieldset>'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Compile $_POST Data | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	string | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected function _compile_post() | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$output = "\n\n" | 
					
						
							|  |  |  | 			.'<fieldset id="ci_profiler_post" style="border:1px solid #009900;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' | 
					
						
							|  |  |  | 			."\n" | 
					
						
							|  |  |  | 			.'<legend style="color:#009900;">  '.$this->CI->lang->line('profiler_post_data')."  </legend>\n"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if (count($_POST) === 0 && count($_FILES) === 0) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$output .= '<div style="color:#009900;font-weight:normal;padding:4px 0 4px 0;">'.$this->CI->lang->line('profiler_no_post').'</div>'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$output .= "\n\n<table style=\"width:100%;\">\n"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			foreach ($_POST as $key => $val) | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				is_int($key) OR $key = "'".htmlspecialchars($key, ENT_QUOTES, config_item('charset'))."'"; | 
					
						
							|  |  |  | 				$val = (is_array($val) OR is_object($val)) | 
					
						
							|  |  |  | 					? '<pre>'.htmlspecialchars(print_r($val, TRUE), ENT_QUOTES, config_item('charset')).'</pre>' | 
					
						
							|  |  |  | 					: htmlspecialchars($val, ENT_QUOTES, config_item('charset')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				$output .= '<tr><td style="width:50%;padding:5px;color:#000;background-color:#ddd;">$_POST[' | 
					
						
							|  |  |  | 					.$key.']   </td><td style="width:50%;padding:5px;color:#009900;font-weight:normal;background-color:#ddd;">' | 
					
						
							|  |  |  | 					.$val."</td></tr>\n"; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			foreach ($_FILES as $key => $val) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				is_int($key) OR $key = "'".htmlspecialchars($key, ENT_QUOTES, config_item('charset'))."'"; | 
					
						
							|  |  |  | 				$val = (is_array($val) OR is_object($val)) | 
					
						
							|  |  |  | 					? '<pre>'.htmlspecialchars(print_r($val, TRUE), ENT_QUOTES, config_item('charset')).'</pre>' | 
					
						
							|  |  |  | 					: htmlspecialchars($val, ENT_QUOTES, config_item('charset')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				$output .= '<tr><td style="width:50%;padding:5px;color:#000;background-color:#ddd;">$_FILES[' | 
					
						
							|  |  |  | 					.$key.']   </td><td style="width:50%;padding:5px;color:#009900;font-weight:normal;background-color:#ddd;">' | 
					
						
							|  |  |  | 					.$val."</td></tr>\n"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			$output .= "</table>\n"; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return $output.'</fieldset>'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Show query string | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	string | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected function _compile_uri_string() | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return "\n\n" | 
					
						
							|  |  |  | 			.'<fieldset id="ci_profiler_uri_string" style="border:1px solid #000;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' | 
					
						
							|  |  |  | 			."\n" | 
					
						
							|  |  |  | 			.'<legend style="color:#000;">  '.$this->CI->lang->line('profiler_uri_string')."  </legend>\n" | 
					
						
							|  |  |  | 			.'<div style="color:#000;font-weight:normal;padding:4px 0 4px 0;">' | 
					
						
							|  |  |  | 			.($this->CI->uri->uri_string === '' ? $this->CI->lang->line('profiler_no_uri') : $this->CI->uri->uri_string) | 
					
						
							|  |  |  | 			.'</div></fieldset>'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Show the controller and function that were called | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	string | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected function _compile_controller_info() | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return "\n\n" | 
					
						
							|  |  |  | 			.'<fieldset id="ci_profiler_controller_info" style="border:1px solid #995300;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' | 
					
						
							|  |  |  | 			."\n" | 
					
						
							|  |  |  | 			.'<legend style="color:#995300;">  '.$this->CI->lang->line('profiler_controller_info')."  </legend>\n" | 
					
						
							|  |  |  | 			.'<div style="color:#995300;font-weight:normal;padding:4px 0 4px 0;">'.$this->CI->router->class.'/'.$this->CI->router->method | 
					
						
							|  |  |  | 			.'</div></fieldset>'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Compile memory usage | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Display total used memory | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	string | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected function _compile_memory_usage() | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return "\n\n" | 
					
						
							|  |  |  | 			.'<fieldset id="ci_profiler_memory_usage" style="border:1px solid #5a0099;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' | 
					
						
							|  |  |  | 			."\n" | 
					
						
							|  |  |  | 			.'<legend style="color:#5a0099;">  '.$this->CI->lang->line('profiler_memory_usage')."  </legend>\n" | 
					
						
							|  |  |  | 			.'<div style="color:#5a0099;font-weight:normal;padding:4px 0 4px 0;">' | 
					
						
							|  |  |  | 			.(($usage = memory_get_usage()) != '' ? number_format($usage).' bytes' : $this->CI->lang->line('profiler_no_memory')) | 
					
						
							|  |  |  | 			.'</div></fieldset>'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Compile header information | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Lists HTTP headers | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	string | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected function _compile_http_headers() | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$output = "\n\n" | 
					
						
							|  |  |  | 			.'<fieldset id="ci_profiler_http_headers" style="border:1px solid #000;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' | 
					
						
							|  |  |  | 			."\n" | 
					
						
							|  |  |  | 			.'<legend style="color:#000;">  '.$this->CI->lang->line('profiler_headers') | 
					
						
							|  |  |  | 			.'  (<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_httpheaders_table\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_show').'\'?\''.$this->CI->lang->line('profiler_section_hide').'\':\''.$this->CI->lang->line('profiler_section_show').'\';">'.$this->CI->lang->line('profiler_section_show')."</span>)</legend>\n\n\n" | 
					
						
							|  |  |  | 			.'<table style="width:100%;display:none;" id="ci_profiler_httpheaders_table">'."\n"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		foreach (array('HTTP_ACCEPT', 'HTTP_USER_AGENT', 'HTTP_CONNECTION', 'SERVER_PORT', 'SERVER_NAME', 'REMOTE_ADDR', 'SERVER_SOFTWARE', 'HTTP_ACCEPT_LANGUAGE', 'SCRIPT_NAME', 'REQUEST_METHOD',' HTTP_HOST', 'REMOTE_HOST', 'CONTENT_TYPE', 'SERVER_PROTOCOL', 'QUERY_STRING', 'HTTP_ACCEPT_ENCODING', 'HTTP_X_FORWARDED_FOR', 'HTTP_DNT') as $header) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$val = isset($_SERVER[$header]) ? htmlspecialchars($_SERVER[$header], ENT_QUOTES, config_item('charset')) : ''; | 
					
						
							|  |  |  | 			$output .= '<tr><td style="vertical-align:top;width:50%;padding:5px;color:#900;background-color:#ddd;">' | 
					
						
							|  |  |  | 				.$header.'  </td><td style="width:50%;padding:5px;color:#000;background-color:#ddd;">'.$val."</td></tr>\n"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return $output."</table>\n</fieldset>"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Compile config information | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Lists developer config variables | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	string | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected function _compile_config() | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$output = "\n\n" | 
					
						
							|  |  |  | 			.'<fieldset id="ci_profiler_config" style="border:1px solid #000;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' | 
					
						
							|  |  |  | 			."\n" | 
					
						
							|  |  |  | 			.'<legend style="color:#000;">  '.$this->CI->lang->line('profiler_config').'  (<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_config_table\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_show').'\'?\''.$this->CI->lang->line('profiler_section_hide').'\':\''.$this->CI->lang->line('profiler_section_show').'\';">'.$this->CI->lang->line('profiler_section_show')."</span>)</legend>\n\n\n" | 
					
						
							|  |  |  | 			.'<table style="width:100%;display:none;" id="ci_profiler_config_table">'."\n"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		foreach ($this->CI->config->config as $config => $val) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$pre       = ''; | 
					
						
							|  |  |  | 			$pre_close = ''; | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			if (is_array($val) OR is_object($val)) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				$val = print_r($val, TRUE); | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				$pre       = '<pre>' ; | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 				$pre_close = '</pre>'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2022-12-14 19:48:56 +08:00
										 |  |  | 			$val = $val == null ? "" : $val; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$output .= '<tr><td style="padding:5px;vertical-align:top;color:#900;background-color:#ddd;">' | 
					
						
							|  |  |  | 				.$config.'  </td><td style="padding:5px;color:#000;background-color:#ddd;">'.$pre.htmlspecialchars($val, ENT_QUOTES, config_item('charset')).$pre_close."</td></tr>\n"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return $output."</table>\n</fieldset>"; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Compile session userdata | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return 	string | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected function _compile_session_data() | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if ( ! isset($this->CI->session)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		$output = '<fieldset id="ci_profiler_csession" style="border:1px solid #000;padding:6px 10px 10px 10px;margin:20px 0 20px 0;background-color:#eee;">' | 
					
						
							|  |  |  | 			.'<legend style="color:#000;">  '.$this->CI->lang->line('profiler_session_data').'  (<span style="cursor: pointer;" onclick="var s=document.getElementById(\'ci_profiler_session_data\').style;s.display=s.display==\'none\'?\'\':\'none\';this.innerHTML=this.innerHTML==\''.$this->CI->lang->line('profiler_section_show').'\'?\''.$this->CI->lang->line('profiler_section_hide').'\':\''.$this->CI->lang->line('profiler_section_show').'\';">'.$this->CI->lang->line('profiler_section_show').'</span>)</legend>' | 
					
						
							|  |  |  | 			.'<table style="width:100%;display:none;" id="ci_profiler_session_data">'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		foreach ($this->CI->session->userdata() as $key => $val) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2022-12-14 19:48:56 +08:00
										 |  |  | 			$val = $val == null ? "" : $val; | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$pre       = ''; | 
					
						
							|  |  |  | 			$pre_close = ''; | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			if (is_array($val) OR is_object($val)) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$val = print_r($val, TRUE); | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				$pre       = '<pre>' ; | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 				$pre_close = '</pre>'; | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			$output .= '<tr><td style="padding:5px;vertical-align:top;color:#900;background-color:#ddd;">' | 
					
						
							|  |  |  | 				.$key.'  </td><td style="padding:5px;color:#000;background-color:#ddd;">'.$pre.htmlspecialchars($val, ENT_QUOTES, config_item('charset')).$pre_close."</td></tr>\n"; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return $output."</table>\n</fieldset>"; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// --------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Run the Profiler | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	string | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	public function run() | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		$output = '<div id="codeigniter_profiler" style="clear:both;background-color:#fff;padding:10px;">'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		$fields_displayed = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		foreach ($this->_available_sections as $section) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 			if ($this->{'_compile_'.$section} !== FALSE) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 				$func = '_compile_'.$section; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 				$output .= $this->{$func}(); | 
					
						
							|  |  |  | 				$fields_displayed++; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if ($fields_displayed === 0) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$output .= '<p style="border:1px solid #5a0099;padding:10px;margin:20px 0;background-color:#eee;">' | 
					
						
							|  |  |  | 				.$this->CI->lang->line('profiler_no_profiles').'</p>'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return $output.'</div>'; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |