| Server IP : 172.67.220.81 / Your IP : 216.73.216.41 Web Server : Apache System : Linux semi1.us.cloudlogin.co 5.10.244-xeon-hst #1 SMP Sun Sep 14 17:09:20 UTC 2025 x86_64 User : xessglobal ( 271017) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : ON Directory : /lib64/perl5/vendor_perl/URL/Encode/ |
Upload File : |
package URL::Encode::XS;
use strict;
use warnings;
BEGIN {
our $VERSION = '0.03';
our @EXPORT_OK = qw[ url_encode
url_encode_utf8
url_decode
url_decode_utf8
url_params_each
url_params_flat
url_params_mixed
url_params_multi ];
require Exporter;
*import = \&Exporter::import;
require XSLoader; XSLoader::load(__PACKAGE__, $VERSION);
}
1;
__END__
=head1 NAME
URL::Encode::XS - XS implementation of URL::Encode
=head1 DESCRIPTION
The main L<URL::Encode> package will use this package automatically if it
can find it. Do not use this package directly, use L<URL::Encode> instead.
=head1 SUPPORT
Please report any bugs or feature requests to C<[email protected]>, or through
the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=URL-Encode-XS>
=head1 AUTHOR
Christian Hansen, E<lt>[email protected]<gt>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2014 by Christian Hansen
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut