Files
Twig/doc/filters/lower.rst
T
2023-12-14 08:17:06 +01:00

17 lines
303 B
ReStructuredText

``lower``
=========
The ``lower`` filter converts a value to lowercase:
.. code-block:: twig
{{ 'WELCOME'|lower }}
{# outputs 'welcome' #}
.. note::
Internally, Twig uses the PHP `mb_strtolower`_ function.
.. _`mb_strtolower`: https://www.php.net/manual/fr/function.mb-strtolower.php