class myclass{
protected $info;
protected $owner;
__construct(){
$this->info = 'nothing';
$this->owner = 'nobody';
}
function getProp($string){
return $this->$string;
}
}
但它不是工作,是不是更多鈔票?它不返回任何東西或顯示錯誤
適用於我(固定'_construct'聲明後,缺少'function'關鍵字)。 – webbiedave