mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-21 07:37:43 +00:00
13 lines
211 B
ReStructuredText
13 lines
211 B
ReStructuredText
``length``
|
|
==========
|
|
|
|
The ``length`` filters returns the number of items of a sequence or mapping, or
|
|
the length of a string:
|
|
|
|
.. code-block:: jinja
|
|
|
|
{% if users|length > 10 %}
|
|
...
|
|
{% endif %}
|
|
|