Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to count the number of queries within a PHP script?

or Do I need to save the counter into a global variable and +1 when a mysqli_query function is called?

share|improve this question

1 Answer

You can simply use a variable in your php script then when mysql_query gives a positive result increment it.

<?php

unset($i);
$i  =   0;
$rec    =   mysql_query('blah');

if($rec){
    $i++;
}

$rec1   =   mysql_query('blah2');

if($rec1){
    $i++;
}

$rec2   =   mysql_query('blah3');

if($rec2){
    $i++;
}

echo $i;

?>
share|improve this answer
it is possible, but if i centralize DB calls in a class, where should I put the counter ? – Shivan Raptor Dec 4 '12 at 7:56
@ShivanRaptor Increment in any method that involves a query, make the counter global. – Asad Dec 4 '12 at 8:22
use $_ENV or $GLOBALS ? – Shivan Raptor Dec 4 '12 at 8:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.