Twig 数组到字符串的转换

问题描述 投票:0回答:4

这可能相对容易做到,但我是 twig 新手,我很沮丧。

我正在改编此答案中的代码:https://stackoverflow.com/a/24058447

数组是通过以下格式在 PHP 中创建的:

$link[] = array(
       'link' => 'http://example.org',
       'title' => 'Link Title',
       'display' => 'Text to display',
);

然后通过 twig,我向其中添加 html,然后在内爆之前:

    <ul class="conr">
        <li><span>{{ lang_common['Topic searches'] }} 
        {% set info = [] %}
        {% for status in status_info %}
            {% set info = info|merge(['<a href="{{ status[\'link\'] }}" title="{{ status[\'title\'] }}">{{ status[\'display\'] }}</a>']) %}
        {% endfor %}
        
        {{ [info]|join(' | ') }}
    </ul>

但我得到:

Errno [8] 数组到字符串的转换 F:\localhost\www wig\include\lib\Twig\Extension\Core.php 第 832 行

当我删除此行后它已修复,但不显示:

{{ [info]|join(' | ') }}

有什么想法可以让我正确地内爆它吗?

** 更新 **

使用 Twig 的转储函数不会返回任何内容。看起来它甚至没有首先将其加载到数组中。如何将信息加载到新数组中。

php arrays string for-loop twig
4个回答
61
投票

info 是一个数组,所以你应该简单地写

{{ info|join(', ') }}

显示您的信息数组。

[info] 是一个只有一个值的数组:数组 info。


17
投票

您不应该在 Twig 模板内构建复杂的数据结构。您可以通过更惯用和可读的方式实现所需的结果,如下所示:

{% for status in status_info %}
    <a href="{{ status.link }}" title="{{ status.title }}">{{ status.display }}</a>
    {% if not loop.last %}|{% endif %}
{% endfor %}

13
投票

您可以使用 json_encode 将数组序列化为 strig,然后显示漂亮 - 在 twig 中构建

 {{ 数组|json_encode(constant('JSON_PRETTY_PRINT')) }} 
    


4
投票

如果需要关联数组:

{{info|json_encode(constant('JSON_PRETTY_PRINT'))|raw}}
© www.soinside.com 2019 - 2024. All rights reserved.