Guest User

Untitled

a guest
Jan 20th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function getDatabaseStatistics() {
  2. $this->instance =& get_instance();
  3. $time = 0;
  4.  
  5. foreach ($this->instance->db->query_times as $query)
  6. $time += $query;
  7.  
  8. return array('time' => number_format($time * 1000, 2), 'queries' => count($this->instance->db->queries));
  9. }
Add Comment
Please, Sign In to add comment