在我的课堂上,我想声明一个受保护的变量:
protected $subject = "Thank you for registering";
到目前为止,这么好。但是当我想要包含一个变量时,我得到一个错误:
protected $subject = "Thank you for registering on " . $nameOfWebsite;
protected $subject = $someVariable;
protected $subject = "Concated " . "String";
全部返回相同的错误syntax error, unexpected '.', expecting ',' or ';'
。我不被允许这样做吗?为什么不呢?
还有另一种方法可以使我的受保护变量变量吗?
谢谢!