當我嘗試執行以下操作時,我得到一個syntax error, unexpected T_VARIABLE
。我究竟做錯了什麼?在另一個屬性中訪問一個對象屬性
class myObj {
public $birth_month;
public $birthday = array('input_val' => $this->birth_month);
}
我也試過
class myObj {
public $birth_month;
public $birthday = array('input_val' => $birth_month);
}