私はそのようなクラスを持っています:
class Example{
private $a;
private $b;
function Example($user){
$this->a = $user;
$this->b = getsting(); //here is my problem
}
function getstring(){
return "string".$this->a; //here I have a class variable
}
}
に値を返すにはどうすればよい$b
ですか?