为什么这段代码会产生“语法错误,意外的‘=’”?

发布于 2024-09-18 16:37:36 字数 202 浏览 8 评论 0原文

$text . = '1 paragraph';
$text . = '2 paragraph';
$text . = '3 paragraph';
echo $text;

此代码给出错误语法错误,意外的“=”

问题是什么?

$text . = '1 paragraph';
$text . = '2 paragraph';
$text . = '3 paragraph';
echo $text;

This code gives error syntax error, unexpected '='.

What is the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

还在原地等你 2024-09-25 16:37:37

如果无论如何你都要输出所有这些,那为什么还要连接呢?只是回应它:

echo '1 paragraph', 
     '2 paragraph',
     '3 paragraph';

If you are going to output all of that anyway, then why concatenate at all? Just echo it:

echo '1 paragraph', 
     '2 paragraph',
     '3 paragraph';
彼岸花似海 2024-09-25 16:37:37

点和等号之间的空间? .= 而不是 。 =

The space between the dot and the equal? .= instead of . =

说不完的你爱 2024-09-25 16:37:37

其他人已经指出了错误:.= 之间有空格。

这是语法/解析错误。当 PHP 看到 . 后跟空格时,它会将 . 作为单独的标记,用于字符串连接。现在它后面需要一个字符串或一个变量。但是当它看到 = 时,它会抛出解析错误,因为它与 PHP 语法不匹配。

Others have already pointed out the error: space between . and =.

This is a syntax/parse error. When PHP sees the . followed by space it takes . as a separate token which is used for string concatenation. Now it expects a string or a variable after it. But when it sees the = it throws the parse error as it does not match the PHP grammar.

開玄 2024-09-25 16:37:37

也可以像这样 echo

echo '1 paragraph'.'2 paragraph'.'3 paragraph';

Also can echo like this

echo '1 paragraph'.'2 paragraph'.'3 paragraph';

甚是思念 2024-09-25 16:37:36

我想你想要:

$text = '1 paragraph';
$text .= '2 paragraph';
$text .= '3 paragraph';
echo $text;

请注意,第一行不使用 .=,而只使用 =

I think you want:

$text = '1 paragraph';
$text .= '2 paragraph';
$text .= '3 paragraph';
echo $text;

Note that the first line does not use .=, and just uses =

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