previousNet_URL (Previous) (Next) Net_URL::setOptionnext

View this page in Last updated: Sun, 18 Oct 2009
English | Brazilian Portuguese | Chinese | Dutch | French | German | Hungarian | Japanese | Polish | Russian | Spanish | Turkish

Net_URL Constructor

Net_URL Constructor – Instantiating Net_URL

Synopsis

require_once 'Net/URL.php';

string Net_URL ( string $url = null , boolean $useBrackets = true )

Description

Instantiates a new Net_URL object

Parameter

  • string $url - The url to parse. By default this is getting $_SERVER['PHP_SELF']

  • boolean $useBrackets - Whether to use sqare brackets or not when there is multiple query variable names using the same name.

Example

Using Net_URL

<?php
require_once 'Net/URL.php';
$url = new Net_URL();
print_r($url->querystring);
?>
previousNet_URL (Previous) (Next) Net_URL::setOptionnext

Download Documentation Last updated: Sun, 18 Oct 2009
Do you think that something on this page is wrong? Please file a bug report or add a note.
User Notes:
There are no user contributed notes for this page.