| mod_perl documentation | view source | Contained in the mod_perl distribution. |
Apache2::URI - Perl API for manipulating URIs
use Apache2::URI (); $hostport = $r->construct_server(); $hostport = $r->construct_server($hostname); $hostport = $r->construct_server($hostname, $port); $hostport = $r->construct_server($hostname, $port, $pool); $url = $r->construct_url(); $url = $r->construct_url($rel_uri); $url = $r->construct_url($rel_uri, $pool); $parsed_uri = $r->parse_uri($uri); $parsed_uri = $r->parsed_uri(); $url = join '%20', qw(one two three); Apache2::URI::unescape_url($url);
While APR::URI provides a generic API to dissect, adjust and put
together any given URI string, Apache2::URI provides an API specific
to Apache, by taking the information directly from the $r
object. Therefore when manipulating the URI of the current HTTP
request usually methods from both classes are used.
Apache2::URI provides the following functions and methods:
construct_serverConstruct a string made of hostname and port
$hostport = $r->construct_server(); $hostport = $r->construct_server($hostname); $hostport = $r->construct_server($hostname, $port); $hostport = $r->construct_server($hostname, $port, $pool);
$r
( Apache2::RequestRec object (docs::2.0::api::Apache2::RequestRec) )The current request object
$hostname ( string )The hostname of the server.
If that argument is not passed,
$r->get_server_name (C_get_server_name_ in docs::2.0::api::Apache2::RequestUtil)
is used.
$port ( string )The port the server is running on.
If that argument is not passed,
$r->get_server_port (C_get_server_port_ in docs::2.0::api::Apache2::RequestUtil)
is used.
$pool
( APR::Pool object (docs::2.0::api::APR::Pool) )The pool to allocate the string from.
If that argument is not passed,
$r->pool (C_pool_ in docs::2.0::api::Apache2::RequestRec) is used.
$hostport ( string )The server's hostport string
Examples:
$r->get_server_name == "localhost"; $r->get_server_port == 8001;
$hostport = $r->construct_server();
localhost:8001
$hostport = $r->construct_server("my.example.com", 8888);
my.example.com:8888
construct_urlBuild a fully qualified URL from the uri and information in the request rec:
$url = $r->construct_url(); $url = $r->construct_url($rel_uri); $url = $r->construct_url($rel_uri, $pool);
$r
( Apache2::RequestRec object (docs::2.0::api::Apache2::RequestRec) )The current request object
$rel_uri ( string )The path to the requested file (it may include a concatenation of path, query and fragment components).
If that argument is not passed,
$r->uri (C_uri_ in docs::2.0::api::Apache2::RequestRec) is used.
$pool
( APR::Pool object (docs::2.0::api::APR::Pool) )The pool to allocate the URL from
If that argument is not passed,
$r->pool (C_pool_ in docs::2.0::api::Apache2::RequestRec) is used.
$url ( string )A fully qualified URL
Examples:
http://localhost.localdomain:8529/test?args
my $url = $r->construct_url;
http://localhost.localdomain:8529/test
http://localhost.localdomain:8529/test?args
my $rel_uri = "/foo/bar?tar"; my $url = $r->construct_url($rel_uri);
http://localhost.localdomain:8529/foo/bar?tar
parse_uriBreak apart URI (affecting the current request's uri components)
$r->parse_uri($uri);
$r
( Apache2::RequestRec object (docs::2.0::api::Apache2::RequestRec) )The current request object
$uri ( string )The uri to break apart
This method has several side-effects explained below
This method call has the following side-effects:
sets $r->args (C_args_ in docs::2.0::api::Apache2::RequestRec) to
the rest after '?' if such exists in the passed $uri, otherwise
sets it to undef.
sets $r->uri (C_uri_ in docs::2.0::api::Apache2::RequestRec) to
the passed $uri without the
$r->args (C_args_ in docs::2.0::api::Apache2::RequestRec) part.
sets
$r->hostname (C_hostname_ in docs::2.0::api::Apache2::RequestRec)
(if not set already) using the (scheme://host:port) parts of the
passed $uri.
parsed_uriGet the current request's parsed uri object
my $uri = $r->parsed_uri();
$r
( Apache2::RequestRec object (docs::2.0::api::Apache2::RequestRec) )The current request object
$uri
( APR::URI object (docs::2.0::api::APR::URI) )The parsed uri
This object is suitable for using with APR::URI::rpath (C_rpath_ in docs::2.0::api::APR::URI)
unescape_urlUnescape URLs
Apache2::URI::unescape_url($url);
$url ( string )The URL to unescape
The argument $url is now unescaped
Example:
my $url = join '%20', qw(one two three); Apache2::URI::unescape_url($url);
$url now contains the string:
"one two three";
APR::URI (docs::2.0::api::APR::URI), mod_perl 2.0 documentation (docs::2.0::index).
mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0.
The mod_perl development team and numerous contributors (about::contributors::people).
| mod_perl documentation | view source | Contained in the mod_perl distribution. |