标签: php
我有2个vars - $ j和$ r
在字符串“$ jx $ r”中,php将$ jx视为变量,但“x”是一个字符串。
答案 0 :(得分:7)
你需要重新格式化你的字符串:
可能更容易阅读:
echo $j."x".$r
但如果你想要一个字符串:
echo "{$j}x$r";
See the manual page for double quoted strings,还有一个解释花括号如何工作的解释。
See the manual page for double quoted strings