我仍然是PHP的新手,我在我的后端框架中使用codeigniter.
我有一个table.PHP文件,可以实时生成一个html表.然后,我遇到了一些问题.
$output_string .= "<td>".($row->isactive == "0") ? "Activated":"Deactivated"."</td>";
使用上面的代码我什么也得不到,但稍微改变一下:
$isactive = ($row->isactive == "0") ? "Activated":"Deactivated";
$output_string .= "<td>".$isactive."</td>";
我得到了我的结果,所以我的问题是,为什么?
解决方法:
$output_string .= "<td>".(($row->isactive == "0") ? "Activated":"Deactivated")."</td>";