我从3.0.7更新我的Kohana do 3.0.8,我得到了这个:
我的功能是:
public function unique_key_exists($value)
{
return (bool) DB::select(array('COUNT("*")', 'total_count'))
->from($this->_table_name)
->where($this->unique_key($value), '=', $value)
->execute($this->_db)
->get('total_count');
}
答案 0 :(得分:1)
重新定义您的函数签名,如下所示:
public function unique_key_exists($value, $field = NULL)
请参阅,如果在父类中使用此签名定义此函数,则必须在子类中跟随它 - 或者面向E_STRICT警告。