NAME

WWW::Form::UrlEncoded::XS - XS implementation of parser for application/x-www-form-urlencoded

SYNOPSIS

use WWW::Form::UrlEncoded::XS qw/parse_urlencoded/;

my $query_string = "foo=bar&baz=param";
my @params = parse_urlencoded($query_string);
# ('foo','bar','baz','param')

DESCRIPTION

WWW::Form::UrlEncoded::XS provides application/x-www-form-urlencoded parser that is implemented by XS. 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 <kazeburo@gmail.com>