标签: php string printf
可能重复: What is the best way to add two strings together?
忽略数据格式化的好处,哪些是最快的?或者更少的记忆力饥饿? 我希望差异可以忽略不计。
$answer = "A String: {$string}"; $answer = sprintf('A String: %s', $string);
PS:我读了一篇博客,发现echo $a, $b略快于echo $a . $b(逗号与连接),因为后者在回显之前暂时创建了第三个值它子>
echo $a, $b
echo $a . $b