表达式不允许作为字段默认值

我正在尝试为全班提供$app

首先,我得到:

“表达式不允许作为字段默认值”

其次,在第5行,我得到:

未知变量$ app

我怎样才能实现我的目标?

class UserController extends XController
{
    var $app = Yii::app();;
    public function init()
    {
        $test = $app;

即使它是静态方法,您也无法调用方法来为PHP中的变量设置默认值。 将其更改为在构造函数中设置:

use Yii;

class UserController extends XController    
{
    var $app;

    function __construct() {
        $this->app =  = Yii::app();
    }

    public function init()    
    {
        $test = $this->app;
    } 
}

作为旁注,您不应在PHP版本> 4中使用var关键字,请参阅此问题以获得解释。

链接地址: http://www.djcxy.com/p/96555.html

上一篇: Expression is not allowed as field default value

下一篇: Should I place variables in class or constructor? PHP