Twig

The flexible, fast, and secure
template engine for PHP

a Symfony Product
Docs Filters column
Docs for Twig version 3.x
Switch to another version: 1.x, 2.x

Questions & Feedback

License

Twig documentation is licensed under the new BSD license.

column

The column filter returns the values from a single column in the input array.

1
2
3
4
5
{% set items = [{ 'fruit' : 'apple'}, {'fruit' : 'orange' }] %}

{% set fruits = items|column('fruit') %}

{# fruits now contains ['apple', 'orange'] #}

Note

Internally, Twig uses the PHP array_column function.

Arguments

  • name: The column name to extract