smarty未给模板分配变量但是模板中确有值,为true

2025-01-01 05:10:25
推荐回答(1个)
回答1:

比如:
if($condition){
//省略

}else{
//不经过这段代码,表明你在其他地方或者全局变量已设置:user为true了。如果没有设置,user肯定是false。
$this->smarty->assign('user','false')

}