Download the PHP package mirazmac/html-sanitizer without Composer
On this page you can find all versions of the php package mirazmac/html-sanitizer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mirazmac/html-sanitizer
More information about mirazmac/html-sanitizer
Files in mirazmac/html-sanitizer
Package html-sanitizer
Short Description A lightweight library to make sanitizing HTML easier on PHP.
License MIT
Homepage https://mirazmac.com
Informations about the package html-sanitizer
HTMLSanitizer
A super lightweight PHP library to sanitize HTML string against a whitelist. It has all the features an HTML sanitizer should have, including tag based whitelisting, allowing custom tags and attributes and even the ability of treating custom attributes as Boolean or URL.
Prologue
Almost every PHP app needs to sanitize HTML once in a while. Whether it is a simple comment or a full blown WYSIWYG editor output. It's crucial to ensure only HTML that you allow gets through. There are tons of HTML sanitizer library out there for PHP. Now don't get me wrong, but most of them are.. bloated. And I get it, since they need to ensure the absolute security for the users it can get pretty complicated. But most of us don't need that sort of functionalities.
Now, HtmlSanitizer
doesn't concern itself with validating, or fixing the HTML at all. It treats HTML as is. Matches it against a defined WhiteList
of HTML tags and attributes and escapes them where necessary. In addition to this, it also allows you to define types for these attributes. Currently the supported ones are URL and Boolean. Also you can define allowed hosts for a specific tag, for example you may wish to allow only youtube.com URLs on an iframe, that can be done very easily.
Requirements
HtmlSanitizer
has no external dependencies, only native PHP ones. Most of them are very common, and almost bundled with PHP 90% of the time
- PHP >=7.0
- mbstring
- libxml
- dom
Install
Usage
Quirks
- Currently doesn't support URL filtering on attributes that contain multiple URLs, for example: srcset
Todos
- Full tests coverage
- Write extended docs