PHP擷取產生一個頁面的資料庫查詢次數

來源:互聯網
上載者:User

標籤:http   io   ar   使用   sp   資料   on   div   cti   

很多部落格軟體都有這麼一個功能,比如“產生本次頁面一共花費了xx毫秒,進行了xx次資料庫查詢”等等。那麼這個功能是如何?的呢,下面我大概說下思路。

1. 在類的建構函式中聲明全域變數

定義一個全域變數 $queries 用來統計頁面產生經過的資料庫查詢次數。

1 function __construct()
2 {
3     parent::__construct();
4     global $queries;
5 }

2. 修改資料庫類中封裝好的的 query()

你應該有用到資料庫類吧,找到它封裝 query() 的方法,比如下面的:

1 // 執行SQL語句
2 public function query($query)
3 {
4     //echo $query.‘<br />‘;
5     ++$GLOBALS[‘queries‘];
6     return $this->result = mysql_query($query$this->link);
7 }

那麼每執行一次 Query,全域變數 queries 就會自增1。

3. 在方法體中這樣寫:

1 public function content($id = 0)
2 {
3     $GLOBALS[‘queries‘] = 0;
4     // something to do
5     echo $GLOBALS[‘queries‘];
6 }

就這麼簡單就能實現那個功能了。

4. 附帶計算PHP指令碼執行的函數

之前寫的博文介紹了下計算PHP指令碼執行時間的函數,這裡再貼一下吧。

01 // 計時函數
02 public function runtime($mode = 0) {
03     static $t;
04     if(!$mode) {
05         $t = microtime();
06         return;
07     }
08     $t1 = microtime();
09     //list($m0,$s0) = split(" ",$t);
10     list($m0,$s0) = explode(" ",$t);
11     //list($m1,$s1) = split(" ",$t1);
12     list($m1,$s1) = explode(" ",$t1);
13     return sprintf("%.3f ms",($s1+$m1-$s0-$m0)*1000);
14 }

使用如下:

1 public function content($id = 0)
2 {
3     $this -> runtime();
4     $GLOBALS[‘queries‘] = 0;
5     // something to do
6     echo $GLOBALS[‘queries‘];
7     echo $this -> runtime(1);
8 }

PHP擷取產生一個頁面的資料庫查詢次數(轉)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.