只是一个愚蠢的问题,如何在f3框架中使用错误处理?
$this->f3->set('ONERROR', function($f3) {
echo $this->f3->get('ERROR.text');
});
if (a > b) {
//throw error
i want to call error and pass "a is too big!"
}
答案 0 :(得分:0)
您可以执行throw new Exception("a is too big!")
以下是一个完美契合您案例的例子:
答案 1 :(得分:0)
尝试以下
if ($a > $b) {
trigger_error("a is too big!", E_USER_NOTICE);
}
答案 2 :(得分:0)