让我们说:
class myclass{
protected $info;
protected $owner;
__construct(){
$this->info = 'nothing';
$this->owner = 'nobody';
}
function getProp($string){
return $this->$string;
}
}
但它不起作用,这不可能吗?它没有返回任何内容或显示错误