⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.94
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
cwpsrv
/
var
/
services
/
twig
/
doc
/
filters
/
View File Name :
number_format.rst
``number_format`` ================= The ``number_format`` filter formats numbers. It is a wrapper around PHP's `number_format`_ function: .. code-block:: jinja {{ 200.35|number_format }} You can control the number of decimal places, decimal point, and thousands separator using the additional arguments: .. code-block:: jinja {{ 9800.333|number_format(2, '.', ',') }} If no formatting options are provided then Twig will use the default formatting options of: * 0 decimal places. * ``.`` as the decimal point. * ``,`` as the thousands separator. These defaults can be easily changed through the core extension: .. code-block:: php $twig = new Twig_Environment($loader); $twig->getExtension('Twig_Extension_Core')->setNumberFormat(3, '.', ','); The defaults set for ``number_format`` can be over-ridden upon each call using the additional parameters. Arguments --------- * ``decimal``: The number of decimal points to display * ``decimal_point``: The character(s) to use for the decimal point * ``thousand_sep``: The character(s) to use for the thousands separator .. _`number_format`: http://php.net/number_format