blob: f827d01c2915c27fd9ca6b5dbc0de820a44b322b (
plain) (
blame)
1
2
3
4
5
6
7
8
|
<?php
$real = sprintf("%.2fkb", memory_get_usage() / 1024);
$peak = sprintf("%.2fkb", memory_get_peak_usage() / 1024);
?>
<center><?php echo "Connections: $db_connections | Queries: $db_queries | Fetches: $db_fetches | Released: $db_frees | Memory: (real): $real (peak): $peak"?></center>
</body>
</html>
|