我的控制器代码如下。这段代码中的 htmlspecialchars() 是什么。
public function actionAdmin()
{
$model=new TaskAssignDevloper('search');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['TaskAssignDevloper']))
$model->attributes=$_GET['TaskAssignDevloper'];
$this->render('admin',array(
'model'=>$model,
));
}
我的视图文件代码是这样的
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'task-assign-devloper-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
'id',
'teamleader0',
'task0.title',
'developer0.username',
'description',
array(
'class'=>'CButtonColumn',
),
),
)); ?>