我有一个问题,可以在树枝模板中制作一个 in_array 吗?例如,我有一个名为 aColors 的数组,其中包含一种产品的颜色:
Array[
0 => "1"
1 => "2"
]
我在图书馆文件夹中有一个类:
class Colors{
public static $aColors = array(
'1' => 'White',
'2' => 'Black',
'3' => 'Yellow',
'4' => 'Red',
'5' => 'Green',
'6' => 'Blue',
);
}
现在我想验证具有产品颜色的数组的值是否具有具有颜色的通用数组的键,并且我在 .twig 中尝试过:
{% for key,val in aColors %}
{% if val in Colors::aColors %}
{% endfor %}
但不行。有解决方案吗?请帮我。谁能帮我?提前谢谢!!!