試圖使用我的類中的函數裏面的字符串中的回聲沒有工作,可能是因爲字符串「」,有沒有更好的方式來做到這一點?PHP中使用字符串「」前綴不工作的類功能
這是我的代碼:
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
怎麼能這樣的字符串內可以實現嗎?
感謝
請在這裏閱讀http://php.net/manual/en/language.types.string.php,尋找「複雜(捲曲)語法」。 – elclanrs
如果你真的需要,這可能會奏效:'echo'這個名字:{$ example-> getName()}「;',但是Andy Gee的回答更好。 – 2013-07-02 08:01:51