我判断记录是本周的隐藏,不是本周的显示 为啥没用
不显示可以用两个办法,一个是设置: 'hidden'=>true,//隐藏 另一个是:
'hidden'=>true,//隐藏
'visible'=>function ($model) { return $model->date==date('Y-m-d',strtotime('this week'))?false:true; },
一开始试过匿名函数 也是没有用,而且这个属性好像不支持匿名函数 QAQ
用样式隐藏了 但是表头的标题没有隐藏 QAQ
他只认 true 和false 空值 和0都算成true 你查查
($model['date']===date("Y-m-d",strtotime("this week")))?true:false 改成这个这个写法 还是不行
($model['date']===date("Y-m-d",strtotime("this week")))?true:false