如何将此类逻辑转换为Twig 2.x?
<?php if (isset($pricerunner_category[$category['category_id']])) { echo $pricerunner_category[$category['category_id']]; } ?>
答案 0 :(得分:1)
attribute
功能应该可以。
https://twig.symfony.com/doc/2.x/functions/attribute.html
{% if attribute(pricerunner_category, category.category_id) is defined %}
{{ attribute(pricerunner_category, category.category_id) }}
{% endif %}
不确定is defined
是否有必要,根据文档添加它。