企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# mews/purifier github : https://github.com/mewebstudio/Purifier 学院资料 : http://laravelacademy.org/post/3914.html ## 安装 ~~~ composer require mews/purifier ~~~ 在config/app.php中添加 ~~~ 'providers' => [ // ... Mews\Purifier\PurifierServiceProvider::class, ] 'aliases' => [ // ... 'Purifier' => Mews\Purifier\Facades\Purifier::class, ] ~~~ 生成配置文件 ~~~ php artisan vendor:publish --provider="Mews\Purifier\PurifierServiceProvider" ~~~ ## 使用 ~~~ 可以使用辅助函数clean: clean(Input::get('inputname')); 或者使用Purifier门面提供的clean方法: Purifier::clean(Input::get('inputname')); 还可以在应用中进行动态配置: clean('This is my H1 title', 'titles'); clean('This is my H1 title', array('Attr.EnableID' => true)); 或者你也可以使用Purifier门面提供的方法: Purifier::clean('This is my H1 title', 'titles'); Purifier::clean('This is my H1 title', array('Attr.EnableID' => true)); ~~~ 不过我在使用的过程中发现他会过滤,但是过滤了会在前后加上`<p></p>`这个,可以自行var_dump查看