只是一個愚蠢的問題,如何在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!"
使用不含脂肪框架我已經在用戶控制器,它定義變量foo的一個函數: public function home(){
$foo = "hello";
}
我在哪個ID希望能夠訪問該變量foo的另一個功能, public function house(){
$this->f3->set('bar', $foo);
}
我會如何去做這件事?