国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數據庫 > MySQL > 正文

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

2024-07-24 13:11:21
字體:
來源:轉載
供稿:網友

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.htmlwhile($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>預查詢mysql運行100000條數據時間為: '.$timer->spent();  unset($timer);  //var_dump($result); 

運行結果:

普通mysql運行1000條數據時間為: 0.011621秒

普通mysql運行10000條數據時間為: 0.07766891秒

普通mysql運行100000條數據時間為: 0.10834217秒

預查詢mysql運行1000條數據時間為: 0.00963211秒

預查詢mysql運行10000條數據時間為: 0.04614592秒

預查詢mysql運行100000條數據時間為: 0.05989885秒

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


注:相關教程知識閱讀請移步到MYSQL教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 霍州市| 华坪县| 商水县| 青川县| 阳信县| 金寨县| 壤塘县| 西吉县| 广德县| 夏津县| 临夏市| 五原县| 临江市| 博乐市| 高碑店市| 石首市| 涞源县| 英吉沙县| 舟山市| 开原市| 特克斯县| 郑州市| 元朗区| 呼和浩特市| 荣成市| 确山县| 崇州市| 任丘市| 曲松县| 上饶县| 万宁市| 玉田县| 开阳县| 临高县| 芜湖市| 剑川县| 镇江市| 常德市| 商南县| 新和县| 卓资县|