|
NAMEHTML::Escape - Extremely fast HTML escaping SYNOPSIS use HTML::Escape qw/escape_html/;
my $escaped = escape_html("<^o^>");
DESCRIPTIONThis modules provides a function which escapes HTML's special characters. It performs a similar function to PHP's htmlspecialchars. It escapes the following characters: " & ' < > ` { }
This module uses XS for better performance, but it also provides a pure perl version. FAQ
BENCHMARK Rate HTML::Entities HTML::Escape
HTML::Entities 14.0/s -- -91%
HTML::Escape 150/s 975% --
AUTHORGoro Fuji Tokuhiro Matsuno <tokuhirom AAJKLFJEF@ GMAIL COM> SEE ALSOText::Xslate, HTML::Entities LICENSECopyright (C) Tokuhiro Matsuno This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|