尝试使用 Heredoc 在 echo 中打印变量时出现 PHP 错误

发布于 2024-10-17 06:05:47 字数 265 浏览 4 评论 0原文

当我尝试这样做时:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

舞袖。长 2024-10-24 06:05:47

第一行的 var 关键字仅用于在类中声明变量。把它放在一边。

The var keyword on the first line is for declaring variables in classes only. Leave it out.

风月客 2024-10-24 06:05:47

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.

万人眼中万个我 2024-10-24 06:05:47

噢。删除“var”关键字修复了它。感谢大家的投入!

但不幸的是它并没有解决我的实际问题。看这里:

$param = array_merge($_REQUEST, $_FILES, $_COOKIE);

$param['example'] = "example";

example();

function example()
{
    global $param;
    echo <<<EOT
        <p>$param['example']</p>
EOT;
    return;
}

这次的投诉是:

解析错误:语法错误,意外
T_ENCAPSED_AND_WHITESPACE,期待
T_STRING 或 T_VARIABLE 或 T_NUM_STRING
在......上线......

再说一次,这里发生了什么事?

D'oh. Removing the 'var' keyword fixed it. Thanks for the input guys!

Unfortunately however it didn't solve my actual problem. See here:

$param = array_merge($_REQUEST, $_FILES, $_COOKIE);

$param['example'] = "example";

example();

function example()
{
    global $param;
    echo <<<EOT
        <p>$param['example']</p>
EOT;
    return;
}

This time the complaint is:

Parse error: syntax error, unexpected
T_ENCAPSED_AND_WHITESPACE, expecting
T_STRING or T_VARIABLE or T_NUM_STRING
in ..... on line ...

Again, what is going on here?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文