我使用以下示例作为发布在 php 手册上的示例,它应该让我在字符串中使用方法调用的返回值...
echo "This is the value of the var named by the return value of getName(): {${getName()}}";
function getName()
{
return "Bob";
}
但是我得到一个错误:“ Notice: Undefined variable: Bob
”
此示例来自此处的 php 手册:http: //php.net/manual/en/language.types.string.php
是手册错误还是我在这里做错了什么?