我有以下代码用于显示一些自定义字段。
<table>
<tbody>
<?php
foreach ($fields as $field) {
$type = $field['s_type'];
$label = $field['s_label'];
$value = Attributes::newInstance()->getValue($item_id, $field['pk_id']);
if ($type == 'checkbox') {
if ($value == 'checked') $value = 'Yes';
else $value = 'No';
}
?>
<tr>
<td class='detail_label'><?php echo $label; ?></td>
<td class='detail_label'><?php echo $value; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
当复选框值='否'时,我不需要在tr中显示内容
有可能吗?
感谢您的帮助!
答案 0 :(得分:1)
试试这个
<table>
<tbody>
<?php
foreach ($fields as $field) {
$displayflag=true; //<--here
$type = $field['s_type'];
$label = $field['s_label'];
$value = Attributes::newInstance()->getValue($item_id, $field['pk_id']);
if ($type == 'checkbox') {
if ($value == 'checked'){ $value = 'Yes'; }
else{ $value = 'No';$displayflag=false}; //<--here
}
?>
<?php if($displayflag){?> //<--here
<tr>
<td class='detail_label'><?php echo $label; ?></td>
<td class='detail_label'><?php echo $value; ?></td>
</tr>
<?php }?>//<--here
<?php } ?>
</tbody>
</table>
答案 1 :(得分:1)
为什么不将tr
包装在if语句中?您可以重复使用相同的$value
变量,因为您只想在“是”时显示该值。
<?php
if ($value == 'Yes')
{
?>
<tr>
<td class='detail_label'><?php echo $label; ?></td>
<td class='detail_label'><?php echo $value; ?></td>
</tr>
<?php
}
?>