| Package Data | |
|---|---|
| Maintainer Username: | owlgrin |
| Maintainer Contact: | mohit.mamoria@gmail.com (Mohit Mamoria) |
| Package Create Date: | 2014-07-18 |
| Package Last Update: | 2016-11-01 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 15:12:13 |
| Package Statistics | |
|---|---|
| Total Downloads: | 43,762 |
| Monthly Downloads: | 326 |
| Daily Downloads: | 0 |
| Total Stars: | 4 |
| Total Watchers: | 3 |
| Total Forks: | 1 |
| Total Open Issues: | 3 |
This package is the custom port of Codeigniter's Xss class.
Require the package in composer.json:
"owlgrin/xss": "0.1.*"
Then, include the following in the array on service providers in config/app.php:
'Owlgrin\Xss\XssServiceProvider',
And, if you want to use it as facade, bind the facade in facade's array in config/app.php:
'Xss' => 'Owlgrin\Xss\XssFacade',
You can clean your input HTML code from Xss attacks using the clean() method:
<?php
$input = Input::get('html');
$cleanedHtml = Xss::clean($input);
If you want to conserve some custom tags that the stripper strips, you can pass them in array as second argument:
<?php
$input = Input::get('html');
$cleanedHtml = Xss::clean($input, ['iframe']);