NAME URL::Encode - Encoding and decoding of "application/x-www-form-urlencoded" encoding. SYNOPSIS $octets = url_decode($octets); $string = url_decode_utf8($octets); $octets = url_encode($octets); $octets = url_encode_utf8($string); $params = url_params_flat($octets [, $utf8 = false]); $params = url_params_mixed($octets [, $utf8 = false]); $params = url_params_multi($octets [, $utf8 = false]); url_params_each($octets, $callback [, $utf8 = false]); DESCRIPTION This module provides functions to encode and decode strings into and from the "application/x-www-form-urlencoded" encoding. ...