php – 尝试使用方法外的dirname()初始化此公共类变量时出错
发布时间:2020-12-13 13:45:23 所属栏目:PHP教程 来源:网络整理
导读:为什么我不能使用函数设置公共成员变量? ?class TestClass { public $thisWorks = "something"; public $currentDir = dirname( __FILE__ ); public function TestClass() { print $this-thisWorks . "n"; print $this-currentDir . "n"; }}$myClass = ne
为什么我不能使用函数设置公共成员变量?
<? 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. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |