Jump to content

Show query information


Brandon Jaeger

Recommended Posts

The below isn't my code. I saved it from a post here long, long, ago. At worst, it'll give you a starting point:

[code]<?php
$starttime = explode(' ', microtime());
$starttime = (float)$starttime[1] + (float)$starttime[0];

/* code, code, code... */

$status = explode('  ', mysql_stat($link));
$startquery = str_replace('Questions: ', '', $status[2]);
/* query query query... */
$status = explode('  ', mysql_stat($link));
$endquery = str_replace('Questions: ', '', $status[2]);
$totalquery = $endquery - $startquery;

/* code, code, code... */

$endtime = explode(' ', microtime());
$endtime = (float)$endtime[1] + (float)$endtime[0];
$totaltime = number_format(($endtime - $starttime), 4, '.', '');

echo "Page parsed in $totaltime secs.<br>MySQL using $totalquery queries.";
?> [/code]

[b]Original post author's note[/b]
please note that $link in this example is a link variable from the database connection, so you might have to change it to your link variable to make it work.
Link to comment
Share on other sites

I don't get it.

[code]$status = explode('  ', mysql_stat($link));
$startquery = str_replace('Questions: ', '', $status[2]);
/* query query query... */
$status = explode('  ', mysql_stat($link));
$endquery = str_replace('Questions: ', '', $status[2]);
$totalquery = $endquery - $startquery;[/code]
What's are these 'Questions: ' and $status[] parts?
Link to comment
Share on other sites

[!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--]What's are these 'Questions: ' and $status[] parts?[/quote]

Check the php manual for the mysql_stat function and all will become clear.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.