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 中,我会使用sprintf("%05d",$lineNumber).
sprintf("%05d",$lineNumber)
在 Symfony 2 Twig 模板中,我应该使用什么代码?
如果i之前是 4,那么在将其添加到 Twig 模板之后:
i
"%02d"|format(i)
...它将变为 04。
Twig 提供了很多过滤器,看看format和number_format。
format
number_format