不工作!== NULL

时间:2018-06-18 20:37:50

标签: php isnull

在我的应用中,我有一张桌子,如果日期字段为空,我可以突出显示某些行,这是我的代码:

<table>
<?php foreach ($conts as $cont): ?>
<tr <?php if ($cont['Cont']['shdate']!==NULL) echo 'class="bg-success"'; ?>>
</tr>
<?php endforeach; ?>
</table>

虽然我已经在数据库中检查过并且该字段为NULL,但它不起作用,为什么会发生这种情况?

0 个答案:

没有答案