mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-24 09:08:38 +00:00
17 lines
303 B
ReStructuredText
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
|