<?php
public function query($sql)
{
$querystart = microtime(true);
$result = @parent::query($sql);
$queryend = microtime(true);
$querytime = round($queryend - $querystart);
if ($this -> errno != 0) {
$this -> error($sql . PHP_EOL . $this -> error);
}
return $result;
}
чет не так делаю с будуна.... не могу понять что?
Помогите люди добрые
Добавлено через 04:38 сек.
class DataBase extends MySQLi {