标签: php isnull
在我的应用中,我有一张桌子,如果日期字段为空,我可以突出显示某些行,这是我的代码:
<table> <?php foreach ($conts as $cont): ?> <tr <?php if ($cont['Cont']['shdate']!==NULL) echo 'class="bg-success"'; ?>> </tr> <?php endforeach; ?> </table>
虽然我已经在数据库中检查过并且该字段为NULL,但它不起作用,为什么会发生这种情况?