精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

CodeIgniter 基準測試

codeigniter 基準測試

 

設定基準點

如果要測量執行一組行所花費的時間或內存使用情況,可以使用 codeigniter 中的 benchmarking 點來計算。 codeigniter 中有一個單獨的" 基準測試"類用于此目的。

這個類是自動加載的;你不必加載它。它可以在您的控制器、視圖和模型類中的任何地方使用。您所要做的就是標記起點和終點,然后在這兩個標記點之間執行 elapsed_time() 函數,您就可以得到執行該代碼所需的時間,如下所示。

 
   $this--->benchmark->mark('code_start');
  
   // some code happens here  
   $this->benchmark->mark('code_end');
  
   echo $this->benchmark->elapsed_time('code_start', 'code_end'); 
?>

要顯示內存使用情況,請使用函數 memory_usage(),如下面的代碼所示。

 
   echo $this--->benchmark->memory_usage(); 
?>

 

示例

創建一個名為 profiler_controller.php 的控制器并將其保存在 application/controller/profiler_controller.php

 
   class profiler_controller extends ci_controller {
  
      public function index() {
	
         //enable profiler
         $this--->output->enable_profiler(true); 
         $this->load->view('test'); 
      } 
  
      public function disable() {
	
         //disable profiler 
         $this->output->enable_profiler(false); 
         $this->load->view('test'); 
      }
		
   } 
?>  

創建一個名為 test.php 的視圖文件并將其保存在 application/views/test.php

 

 
    
       
      codeigniter view example 
   
	
    
      codeigniter view example 
   
	

更改 application/config/routes.php 中的 routes.php 文件,為上述控制器添加路由,并在文件末尾添加以下行。

$route['profiler'] = "profiler_controller"; 
$route['profiler/disable'] = "profiler_controller/disable"

之后,您可以在瀏覽器的地址欄中輸入以下 url 來執行示例。

http://yoursite.com/index.php/profiler

上面的 url 將啟用分析器,它會產生一個輸出,如下面的屏幕截圖所示。

要禁用分析,請執行以下 url。

http://yoursite.com/index.php/profiler/disable

下一節:codeigniter 添加js和css

codeigniter 教程

相關文章