=50002) ( $sql="SHOW GLOBAL STATUS LIKE 'Questions'"; ) else ( $sql="SHOW STATUS LIKE 'Questions'"; ) (email protected)_query( $sql ); (email protected)_fetch_array( $result ); return $row('Value'); ) //helper function is needed to detect the exact mysql-version function getMysqlVersion() ( $sql = 'SELECT VERSION() AS versionsinfo'; $result = @mysql_query('SELECT VERSION() AS versionsinfo'); $version = @mysql_result( $result, 0, "versionsinfo" ); $match = explode('.',$version); return sprintf('%d%02d%02d',$match(0),$match(1),intval($match(2))); ) ?>
Mysql'nin sonraki sürümlerinde değişen sorgu sayısını içeren global mysql-status-değişkeninin adı, çalıştırdığınız mysql'in tam sürümünü algılamak için bir yardımcı işlev gereklidir.