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.
以下两种方法(性能、可读性等)有什么区别,你更喜欢什么?
echo "Welcome {$name}s!"
对比
echo "Welcome " . $name . "!";
最适合您的方法都可以...但是如果您想提高速度,请使用:
echo 'Welcome ', $name, '!';
单引号告诉 PHP 不需要解释,逗号告诉 PHP 只回显字符串,不需要连接。