我真的不知道google是什麼,因爲我有種不知道行話的PHP和OOP。爲什麼我不能在課堂上申報「約會」?
爲什麼不在PHP中工作?
class Calendar{
public $derp="lala";
public $todaysDate=date('Y-m-d',strtotime('2013-04-11'));
}
但這是嗎?
class Calendar{
public $derp="lala";
public function __construct()
{
$this->todaysDate=date('Y-m-d',strtotime('2013-04-11'));
}
}
你不能在類的開頭聲明一個日期嗎?爲什麼?
* [類定義中的屬性聲明只能是常量值,而不是表達式。](http://stackoverflow.com/questions/2671928/workaround-for-basic-syntax-not-being-parsed) – mario