将变量与后面的文字子字符串分开

发布于 2024-10-29 12:33:01 字数 240 浏览 6 评论 0原文

我在双引号字符串中写入 2 个变量: $j$r,但我想在 $j 之后立即写入一个文字字符串>。问题是,如果我写 "$jx$r",那么 PHP 会将字符串视为 $jx$r

如何将前导变量 ($j) 与文字字符串 (x) 分开?

I'm writing 2 variables in a double quoted string: $j and $r, but I want to write a literal string immediately after $j. The trouble is that if I write "$jx$r", then PHP treats the string as $jx and $r.

How can I separate the leading variable ($j) from the literal string (x)?

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

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

发布评论

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

评论(1

錯遇了你 2024-11-05 12:33:01

您需要稍微重新格式化您的字符串:

这可能更容易阅读:

echo $j."x".$r

但是如果您希望将其放在一个字符串中:

echo "{$j}x$r";

查看双引号字符串的手册页,还有大括号如何工作的解释。

You need to reformat your string a litte:

Tis might be easier to read:

echo $j."x".$r

But if you want it in one string:

echo "{$j}x$r";

See the manual page for double quoted strings, there is also an explaination how the curly braces work.

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