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

17 lines
280 B
ReStructuredText

``upper``
=========
The ``upper`` filter converts a value to uppercase:
.. code-block:: twig
{{ 'welcome'|upper }}
{# outputs 'WELCOME' #}
.. note::
Internally, Twig uses the PHP `mb_strtoupper`_ function.
.. _`mb_strtoupper`: https://www.php.net/mb_strtoupper