Twig

The flexible, fast, and secure
template engine for PHP

a Symfony Product
Docs Filters column
You are reading the documentation for Twig 3.x. Switch to the documentation for Twig 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
Website powered by Symfony and Twig, deployed on
The Twig logo is © 2010-2024 Symfony