इसे आजमाएं:
<?php
$host='localhost';
$username='testing';
$password='testing';
$dbname='test';
$DBC = new mysqli($host,$username,$password,$dbname);
$DBC->query('set profiling=1');
$DBC->query('SELECT * FROM abc');
if ($result = $DBC->query("SHOW profiles", MYSQLI_USE_RESULT)) {
while ($row = $result->fetch_row()) {
var_dump($row);
}
$result->close();
}
if ($result = $DBC->query("show profile for query 1", MYSQLI_USE_RESULT)) {
while ($row = $result->fetch_row()) {
var_dump($row);
}
$result->close();
}
$DBC->query('set profiling=0');
?>
पहला if
स्टेटमेंट आपको इस तरह आपकी क्वेरी के लिए संपूर्ण निष्पादन समय देता है:
array(3) { [0]=> string(1) "1" [1]=> string(10) "0.00024300" [2]=> string(17) "SELECT * FROM abc" }
दूसरा if
कथन आपको आपकी क्वेरी का विस्तृत निष्पादन समय देता है। परिणाम सटीक होने चाहिए क्योंकि आप MySQL आंतरिक प्रोफाइलर का उपयोग कर रहे हैं।