变量前面的感叹号是什么意思?它是如何在这段代码中使用的?
编辑:从目前的答案来看,我怀疑我还应该提到这段代码在一个函数中,其中一个参数是 $mytype ....这是否是一种检查 $mytype 是否通过的方法?- 感谢到目前为止所有的响应者。
$myclass = null;
if ($mytype == null && ($PAGE->pagetype <> 'site-index' && $PAGE->pagetype <>'admin-index')) {
return $myclass;
}
elseif ($mytype == null && ($PAGE->pagetype == 'site-index' || $PAGE->pagetype =='admin-index')) {
$myclass = ' active_tree_node';
return $myclass;
}
elseif (!$mytype == null && ($PAGE->pagetype == 'site-index' || $PAGE->pagetype =='admin-index')) {
return $myclass;
}`