Description
The URL utility makes it easier to work with URLs by returning comprehenive information about a URL you supply, including query parameters, protocol, domain and more. The URL utility is a wrapper around the parseUri library by Steven Levithan.
Example
ips.utils.url.getParam('page', 'http://www.test.com/index.php?section=example&page=about'); // -> about
Methods
string getParam( string param, string url )
Returns the value of the parameter param in the provided url.
-
param
The parameter name to fetch -
url
The URL used to locate the parameter
object getURIObject( string url )
Returns an object of data about the provided URL. Consult the parseUri documentation for information on what this object includes.
-
url
The URL to parse
Report Guide