我有一个数字字段:<?php echo $entity->field_zip_code_name[0];?>
我想根据输出编号创建一个if then语句。这就是我所拥有的:
if ($entity->field_areacode[0] = 92919,92923,94975,37783) {
<h3 style="font-size: 20px;"><strong>Area Code:</strong></h3>;
}
else {
NONE;
}
任何帮助将不胜感激。
答案 0 :(得分:1)
不确定x
是什么,如果它$entity->field_zip_code_name[0]
然后回应:{/ p>
if(in_array($entity->field_zip_code_name[0], [92919,92923,94975,37783])) {
//display x
}
如果您的PHP版本不支持[]
,请使用array()
:
if(in_array($entity->field_zip_code_name[0], array(92919,92923,94975,37783))) {
//display x
}