1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
[](https://travis-ci.org/kazeburo/WWW-Form-UrlEncoded-XS)
# NAME
WWW::Form::UrlEncoded::XS - XS implementation of parser and builder for application/x-www-form-urlencoded
# SYNOPSIS
use WWW::Form::UrlEncoded::XS 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::XS provides application/x-www-form-urlencoded parser and builder
that is implemented by XS. see [WWW::Form::UrlEncoded](https://metacpan.org/pod/WWW%3A%3AForm%3A%3AUrlEncoded)'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 <kazeburo@gmail.com>
|