Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: php中单引号和双引号字符串的区别
如果我们用双引号而不是单引号将字符串括起来,我们可以在文本字符串中包含变量的名称并在其位置插入值。
为什么它在单引号的情况下不起作用?
这正是单引号和双引号之间的预期区别,当解释器可能需要替换某些内容时使用双引号,单引号告诉 php 字符串将保持原样..