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テンプレートでは、どのコードを使用する必要がありますか?
以前が4だった場合i、これをTwigテンプレートに追加した後:
i
"%02d"|format(i)
...04になります。
Twigにはたくさんのフィルターが用意されています。見てformatくださいnumber_format。
format
number_format