Twig,在数组函数中

时间:2014-02-25 15:06:35

标签: arrays twig

我想做一些棘手的事情,比如PHP中的数组函数。 例如,我的数组:

0 => business
1 => person
2 => contact

现在我想检查我的数组中是否存在值'例如'business'。在这种情况下存在所以它应该是真的,例如对于'busi'或'aaa'它应该是假的。有没有简单的方法呢?

这对我来说无效:

{% if 'aaa' in types|keys %}

总是如此......

1 个答案:

答案 0 :(得分:0)

您可以查看defined吗?

检查密钥

 {% if types['aaa'] is defined %}

检查值

{% if ('aaa' in types) %}