主頁 > 知識庫 > php+mysql prepare 與普通查詢的性能對比實例講解

php+mysql prepare 與普通查詢的性能對比實例講解

熱門標簽:地圖標注百度競價 外呼系統(tǒng)線路經(jīng)常出問題嗎 如何辦理400客服電話 地圖標注專員入駐 安陽手機自動外呼系統(tǒng)原理是什么 地圖標注什么軟件好用 神行者百貨商場地圖標注 外呼系統(tǒng)怎樣才能不封號 西藏地圖標注改進點

php+mysql prepare 與普通查詢的性能對比

實例代碼如下:

?php 
class timer {   
    public $StartTime = 0;   
    public $StopTime = 0;   
    public $TimeSpent = 0;   
      
    function start(){   
      $this->StartTime = microtime();   
    }   
      
    function stop(){   
      $this->StopTime = microtime();   
    }   
      
    function spent() {   
      if ($this->TimeSpent) {   
      return $this->TimeSpent;   
 
      } else {  
        // http://www.manongjc.com
        $StartMicro = substr($this->StartTime,0,10);   
        $StartSecond = substr($this->StartTime,11,10);   
        $StopMicro = substr($this->StopTime,0,10);   
        $StopSecond = substr($this->StopTime,11,10);   
        $start = floatval($StartMicro) + $StartSecond;   
        $stop = floatval($StopMicro) + $StopSecond;   
        $this->TimeSpent = $stop - $start; 
         
      return round($this->TimeSpent,8).'秒';   
      }  
    }  
  
} 
 
$timer = new timer;   
$timer->start();  
 
$mysql = new mysqli('localhost','root','root','ganbaobao_ucenter'); 
 
/* 
$query = $mysql->query("select username,email from uc_members where uid  100000"); 
$result = array(); 
http://www.manongjc.com/article/1194.html
while($result = $query->fetch_array()) 
{ 
  $result[] = array('name'=>$result['username'],'email'=>$result['email']); 
} 
*/ 
$query_prepare = $mysql->prepare("select username,email from uc_members where uid  ?"); 
 
$id = 100000; 
$query_prepare->bind_param("i",$id); 
 
$query_prepare->execute(); 
$query_prepare->bind_result($username,$email); 
 
$result = array(); 
while($query_prepare->fetch()) 
{ 
  $result[] = array('name'=>$username,'email'=>$email); 
} 
 
$timer->stop();  
echo '/br>預(yù)查詢mysql運行100000條數(shù)據(jù)時間為: '.$timer->spent();  
unset($timer);  
//var_dump($result); 

運行結(jié)果:

普通mysql運行1000條數(shù)據(jù)時間為: 0.011621秒

普通mysql運行10000條數(shù)據(jù)時間為: 0.07766891秒

普通mysql運行100000條數(shù)據(jù)時間為: 0.10834217秒

預(yù)查詢mysql運行1000條數(shù)據(jù)時間為: 0.00963211秒

預(yù)查詢mysql運行10000條數(shù)據(jù)時間為: 0.04614592秒

預(yù)查詢mysql運行100000條數(shù)據(jù)時間為: 0.05989885秒

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

您可能感興趣的文章:
  • MySQL中預(yù)處理語句prepare、execute與deallocate的使用教程
  • PHP5 mysqli的prepare準備語句使用說明
  • MySQL prepare語句的SQL語法
  • MySQL prepare原理詳解

標簽:衡水 貴港 酒泉 阜陽 萍鄉(xiāng) AXB 張掖 雞西

巨人網(wǎng)絡(luò)通訊聲明:本文標題《php+mysql prepare 與普通查詢的性能對比實例講解》,本文關(guān)鍵詞  php+mysql,prepare,與,普通,查詢,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《php+mysql prepare 與普通查詢的性能對比實例講解》相關(guān)的同類信息!
  • 本頁收集關(guān)于php+mysql prepare 與普通查詢的性能對比實例講解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章