mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-21 07:37:43 +00:00
14 lines
277 B
ReStructuredText
14 lines
277 B
ReStructuredText
``reverse``
|
|
===========
|
|
|
|
The ``reverse`` filter reverses an array (or an object if it implements the
|
|
`Iterator`_ interface):
|
|
|
|
.. code-block:: jinja
|
|
|
|
{% for use in users|reverse %}
|
|
...
|
|
{% endfor %}
|
|
|
|
.. _`Iterator`: http://fr.php.net/manual/en/class.iterator.php
|