将变量与后面的文字子字符串分开
我在双引号字符串中写入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要稍微重新格式化您的字符串:
这可能更容易阅读:
但是如果您希望将其放在一个字符串中:
查看双引号字符串的手册页
,还有大括号如何工作的解释。You need to reformat your string a litte:
Tis might be easier to read:
But if you want it in one string:
See the manual page for double quoted strings
, there is also an explaination how the curly braces work.