まあ言ってみれば:
class myclass{
protected $info;
protected $owner;
__construct(){
$this->info = 'nothing';
$this->owner = 'nobody';
}
function getProp($string){
return $this->$string;
}
}
しかし、それは機能していません、それは可能ではありませんか?何も返さない、またはエラーが表示されない