Yaffs site version 1.1
[yaffs-website] / vendor / twig / twig / doc / filters / length.rst
1 ``length``
2 ==========
3
4 .. versionadded:: 1.33
5
6     Support for the ``__toString()`` magic method has been added in Twig 1.33.
7
8 The ``length`` filter returns the number of items of a sequence or mapping, or
9 the length of a string.
10
11 For objects that implement the ``Countable`` interface, ``length`` will use the
12 return value of the ``count()`` method.
13
14 For objects that implement the ``__toString()`` magic method (and not ``Countable``),
15 it will return the length of the string provided by that method.
16
17 .. code-block:: jinja
18
19     {% if users|length > 10 %}
20         ...
21     {% endif %}