我想知道,插入PHP变量到字符串的正确方法是什么? 这种方式:

echo "Welcome ".$name."!"

或者这样:

echo "Welcome $name!"

这两种方法都可以在我的PHP v5.3.5中使用。后者更短更简单,但我不确定前者是更好的格式还是更合适。


当前回答

我一直都喜欢这种方式,而且发现它容易得多。

echo "Welcome {$name}!"

其他回答

不要连接。这是不需要的,我们的逗号作为echo可以接受多个参数

echo "Welcome ", $name, "!";

关于使用单引号或双引号,差异可以忽略不计,您可以使用大量字符串进行测试。

echo "Welcome $name!";

这是最好的办法。

你不需要其他任何东西

我知道这个问题已经有了一个选择的答案,但我发现这篇文章明显表明,字符串插值比串联更快。这可能对那些仍在犹豫的人有所帮助。

从简单、易读、一致和易于理解的角度来看(因为性能在这里并不重要):

Using embedded vars in double quotes can lead to complex and confusing situations when you want to embed object properties, multidimentional arrays etc. That is, generally when reading embedded vars, you cannot be instantly 100% sure of the final behavior of what you are reading. You frequently need add crutches such as {} and \, which IMO adds confusion and makes concatenation readability nearly equivalent, if not better. As soon as you need to wrap a function call around the var, for example htmlspecialchars($var), you have to switch to concatenation. AFAIK, you cannot embed constants.

在某些特定情况下,“嵌入vars的双引号”可能是有用的,但一般来说,我会使用串联(方便时使用单引号或双引号)

两种都可以。使用对你来说能见度更好的那个。说到可见性,你也可以查看printf。