Всем привет, подскажите как исправить эту ошибку?
mod_fcgid: stderr: PHP Strict Standards: Declaration of PDO_::prepare() should be compatible with PDO::prepare($statement, $options = NULL) in /var/www/system/sys.php on line 51
[code]
class PDOStatement_ extends PDOStatement {
function execute($params = array()) {
if (func_num_args() == 1) {
$params = func_get_arg(0);
} else {
$params = func_get_args();
}
if (!is_array($params)) {
$params = array($params);
}
parent :: execute($params);
return $this;
}
function fetchSingle() {
return $this -> fetchColumn(0);
}
function fetchAssoc() {
$this -> setFetchMode(PDO :: FETCH_NUM);
$data = array();
while ($row = $this -> fetch()) {
$data[$row[0]] = $row[1];
}
return $data;
}
}
[/code]
Тему перенёс из подраздела Разные CMS в подраздел Вопросы новичков!