おそらく文字列 "" が原因で、echo の文字列内でクラスの関数を使用しようとしても機能しません。より良い方法はありますか?
これは私のコードです:
class example{
private $name = "Cool";
function getName(){
return $this->name;
}
}
$example = new example();
//THIS WONT WORK
echo "the name : $example->getName()";
//THIS WILL PRINT :
//the name : ()
//THIS WILL WORK
$name = $example->getName();
echo "the name : $name";
//THIS WILL PRINT :
//the name : Cool
文字列内でこれをどのように達成できますか?
ありがとう