AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
#### 视图安全 ``` public function actionTest() { $data['msg'] = '<script>alert("hello")</script>>'; return $this->renderPartial('index',$data); } ``` ``` <?= $msg; ?> ``` 结果:弹出窗口 ![](https://box.kancloud.cn/45fc56f6f8d3011b5ba1ebda54991fa3_896x252.png) 如下使用就会对字符串进行转义 ``` <?php use \yii\helpers\Html; use \yii\helpers\HTMLPurifier; ?> <?= \yii\helpers\Html::encode($msg); ?> <?= HTMLPurifier::process($msg); ?> //将html代码彻底移除掉 ``` 效果 ![](https://box.kancloud.cn/63ae22d53e7654eca50b96247791b269_748x184.png)