Twig

The flexible, fast, and secure
template engine for PHP

a Symfony Product
Docs Filters column
You are reading the documentation for Twig 2.x. Switch to the documentation for Twig 1.x. 3.x.
Warning Twig version 2.x end of maintenance is scheduled for December 2023.

Questions & Feedback

License

Twig documentation is licensed under the new BSD license.

column

2.8

The column filter was added in Twig 2.8.

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