为什么在 PHP 中使用 sprintf 函数?
我试图学习更多关于PHP函数sprintf()的信息,但 php.net 并没有帮助我,因为我仍然感到困惑,你为什么要使用它?
看看下面我的例子。
为什么使用这个:
$output = sprintf("Here is the result: %s for this date %s", $result, $date);
当这样做相同并且更容易编写IMO时:
$output = 'Here is the result: ' .$result. ' for this date ' .$date;
我在这里错过了什么吗?