尝试使用 Heredoc 在 echo 中打印变量时出现 PHP 错误
当我尝试这样做时:
var $example = "Example";
echo <<<EOT
<p>$example</p>
EOT;
我收到此错误:
解析错误:语法错误,意外 T_VAR 在......在线......
这里发生了什么?据我所知,这应该有效。
我正在使用 PHP 5.3.5。
When I try to do this:
var $example = "Example";
echo <<<EOT
<p>$example</p>
EOT;
I get this error:
Parse error: syntax error, unexpected
T_VAR in ..... on line ...
What is going on here?? To my knowledge this should work.
I'm using PHP 5.3.5.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
第一行的
var
关键字仅用于在类中声明变量。把它放在一边。The
var
keyword on the first line is for declaring variables in classes only. Leave it out.删除单词 var。
请参阅 http://www.php.net/manual/en/language。变量.basics.php
remove the word var.
see http://www.php.net/manual/en/language.variables.basics.php
PHP 中没有关键字
var
。无论如何,PHP5 中没有 - 它只是由于向后兼容性而被接受,并用于定义类变量。There is no keyword
var
in PHP. Not in PHP5 anyway - it's only accepted due to backward compatibility, and is used to define class variables.噢。删除“var”关键字修复了它。感谢大家的投入!
但不幸的是它并没有解决我的实际问题。看这里:
这次的投诉是:
再说一次,这里发生了什么事?
D'oh. Removing the 'var' keyword fixed it. Thanks for the input guys!
Unfortunately however it didn't solve my actual problem. See here:
This time the complaint is:
Again, what is going on here?