ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的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)