php – 尝试使用方法外的dirname()初始化此公共类变量时出错

前端之家收集整理的这篇文章主要介绍了php – 尝试使用方法外的dirname()初始化此公共类变量时出错前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么我不能使用函数设置公共成员变量?
<?

class TestClass {

    public $thisWorks = "something";

    public $currentDir = dirname( __FILE__ );

    public function TestClass()
    {
        print $this->thisWorks . "\n";
        print $this->currentDir . "\n";
    }

}

$myClass = new TestClass();

?>

运行它产生:

Parse error: Syntax error,unexpected '(',expecting ',' or ';' in /tmp/tmp.PHP on line 7
您不能在变量声明中使用表达式.您只能使用常量值. dirname()可能不会出现在此位置.

如果您使用PHP 5.3,您可以使用:

public $currentDir = __DIR__ ;

否则,您必须在__constructor中初始化$this-> currentDir.

猜你在找的PHP相关文章