logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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

Author

       Masahiro Nagano <kazeburo@gmail.com>

perl v5.40.0                                       2024-10-20                     WWW::Form::UrlEncoded::XS(3pm)

Description

       WWW::Form::UrlEncoded::XS provides application/x-www-form-urlencoded parser and builder 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.

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";

See Also