fatfree框架:在ONERROR上设置变量

时间:2013-11-04 11:06:11

标签: php fat-free-framework

如何在错误函数中设置变量?

$f3->set('ONERROR',function($f3){
    echo \Template::instance()->render('layout.htm');
});

这是我的代码,我需要添加类似的东西

$f3->set('ONERROR',function($f3){
        $f3->set('page_title','Error on page');
        $f3->set('page_description','No description');
        echo \Template::instance()->render('layout.htm');
});

我尝试使用$ this-> set和$ f3->设置,但两种情况都没有成功。谢谢!

1 个答案:

答案 0 :(得分:1)

好的......我忘了一个简单的变量......唉!

请注意在F3中所有变量都已初始化或不为空。