我真的不知道要谷歌什么,因为我在不知道行话的情况下学习了 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'));
}
}
您不能在课程开始时声明日期吗?为什么?