Badger::Codec::URL - URL encode/decode
use Badger::Codec::URL;
my $codec = Badger::Codec::URL->new();
my $encoded = $codec->encode("Hello World!");
my $decoded = $codec->decode($encoded);
This module implements a subclass of Badger::Codec for URL encoding and
decoding. Note the difference between URI and URL. URI encoding is strict and
encodes characters like ";",
"?" and
"/". The URL codec is more lax and does not
encode these characters.
The URI codec should be used for encoding URL parameters. The URL
codec can be used to encode complete URLs.
This function URL-encodes the $data passed as an
argument.
This function URL-decodes the $data passed as an
argument.
This method URL-encodes the data referenced by the first argument. It delegates
to the encode_url() function.
$encoded = Badger::Codec::URL->encode($data);
This method decodes the encoded data passed as the first argument. It delegates
to the decode_url() function.
$decoded = Badger::Codec::URL->decode($encoded);
This method returns a reference to the encode_url() function.
This method returns a reference to the decode_url() function.
Andy Wardley <http://wardley.org/>
Copyright (C) 2008-2009 Andy Wardley. All rights reserved.
Badger::Codecs, Badger::Codec