欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

下列语句该如何设置多条件查询

程序员文章站 2022-05-08 10:17:40
...
$result_style = $row['result'] == '红色' ? ' style="color:red"' : '';

这条代码只能在result是红色的时候,sytle才能显示为红色。
如何让result是红色的时候,并且$row['type']==‘小明’时,style显示为红色呢?


回复讨论(解决方案)

$result_style = $row['result'] == '红色' && $row['type']==‘小明’ ? ' style="color:red"' : '';

$result_style = $row['result'] == '红色' && $row['type']=='小明'  ? ' style="color:red"' : '';

唉,我傻逼了,用的and,忘了用&&。