mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-18 13:26:37 +00:00
17 lines
280 B
ReStructuredText
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
|