gpt4 book ai didi

php - Twig - 尝试拆分数组元素

转载 作者:行者123 更新时间:2023-12-02 04:35:38 25 4
gpt4 key购买 nike

我循环遍历一组对象,然后尝试拆分其中一个元素,在这种情况下,我想拆分空格上的邮政编码。 IE。 'AB1 1AB' 应该只是 'AB1' 。

{% for result in resultset %}
{{ result.postcode|split(' ') }}
{% endfor %}

向我抛出“数组到字符串错误”

只是尝试:

{{ result.postcode[0] }}

向我抛出“无法访问字符串变量上的键 [0]”错误。

只是在做:

{{ result.postcode }}   

没有给我任何错误,邮政编码显示为 'AB1 1AB'

为什么当我尝试拆分字符串时,Twig 认为它是一个数组?

最佳答案

来自官方文档:

The split filter splits a string by the given delimiter and returns a list of strings:

{{ "one,two,three"|split(',') }}
{# returns ['one', 'two', 'three'] #}

因此,使用您的代码,您可以执行以下操作:

{% for result in resultset %}
{{ set myArray = result.postcode|split(' ') }}
{{ myArray[0] }} {# Will output "AB1" #}
{% endfor %}

来源:TWIG Split filter

关于php - Twig - 尝试拆分数组元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22038327/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com