WWW::Form::UrlEncoded::PP - pure-perl parser and builder for application/x-www-form-urlencoded

NAME  SYNOPSIS  DESCRIPTION  LICENSE  AUTHOR 

NAME

WWW::Form::UrlEncoded::PP − pure−perl parser and builder for application/x−www−form−urlencoded

SYNOPSIS

use WWW::Form::UrlEncoded::PP qw/parse_urlencoded build_urlencoded/;
my $query_string = "foo=bar&baz=param";
my @params = parse_urlencoded($query_string);
# ('foo','bar','baz','param')
my $query_string = build_urlencoded('foo','bar','baz','param');
# "foo=bar&baz=param";

DESCRIPTION

WWW::Form::UrlEncoded::PP provides pure-perl application/x−www−form−urlencoded parser and builder. see WWW::Form::UrlEncoded’s document.

LICENSE

Copyright (C) Masahiro Nagano.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Masahiro Nagano <[email protected]>


Updated 2024-01-29 - jenkler.se | uex.se