class UrlImmutable implements JsonSerializable

Immutable representation of a URL.

scheme  user  password  host  port      path        query    fragment
  |      |      |        |      |        |            |         |
/--\   /--\ /------\ /-------\ /--\/------------\ /--------\ /------\
http://john:x0y17575@nette.org:8042/en/manual.php?name=param#fragment  <-- absoluteUrl
\______\__________________________/
    |               |
 hostUrl        authority

Properties

string read-only $scheme
string read-only $user
string read-only $password
string read-only $host
int read-only $port
string read-only $path
string read-only $query
string read-only $fragment
string read-only $absoluteUrl
string read-only $authority
string read-only $hostUrl
array read-only $queryParameters

Methods

__construct(Url $url)

No description

withScheme(string $scheme)

No description

string
getScheme()

No description

withUser(string $user)

No description

string
getUser()

No description

withPassword(string $password)

No description

string
getPassword()

No description

withoutUserInfo()

No description

withHost(string $host)

No description

string
getHost()

No description

string
getDomain(int $level = 2)

No description

withPort(int $port)

No description

int|null
getPort()

No description

int|null
getDefaultPort()

No description

withPath(string $path)

No description

string
getPath()

No description

withQuery(string|array $query)

No description

string
getQuery()

No description

withQueryParameter(string $name, mixed $value)

No description

array
getQueryParameters()

No description

array|string|null
getQueryParameter(string $name)

No description

withFragment(string $fragment)

No description

string
getFragment()

No description

string
getAbsoluteUrl()

Returns the entire URI including query string and fragment.

string
getAuthority()

Returns the [user[:pass]@]host[:port] part of URI.

string
getHostUrl()

Returns the scheme and authority part of URI.

string
__toString()

No description

bool
isEqual(Url|self $url)

No description

resolve(string $reference)

Resolves relative URLs in the same way as browser. If path is relative, it is resolved against base URL, if begins with /, it is resolved against the host root.

string
mergePath(string $path)

No description

string
jsonSerialize()

No description

array
export()

No description

Details

at line 59
__construct(Url $url)

No description

Parameters

Url $url

Exceptions

InvalidArgumentException

at line 66
UrlImmutable withScheme(string $scheme)

No description

Parameters

string $scheme

Return Value

UrlImmutable

at line 75
string getScheme()

No description

Return Value

string

at line 81
UrlImmutable withUser(string $user)

No description

Parameters

string $user

Return Value

UrlImmutable

at line 90
string getUser()

No description

Return Value

string

at line 96
UrlImmutable withPassword(string $password)

No description

Parameters

string $password

Return Value

UrlImmutable

at line 105
string getPassword()

No description

Return Value

string

at line 111
UrlImmutable withoutUserInfo()

No description

Return Value

UrlImmutable

at line 120
UrlImmutable withHost(string $host)

No description

Parameters

string $host

Return Value

UrlImmutable

at line 129
string getHost()

No description

Return Value

string

at line 135
string getDomain(int $level = 2)

No description

Parameters

int $level

Return Value

string

at line 147
UrlImmutable withPort(int $port)

No description

Parameters

int $port

Return Value

UrlImmutable

at line 156
int|null getPort()

No description

Return Value

int|null

at line 162
int|null getDefaultPort()

No description

Return Value

int|null

at line 168
UrlImmutable withPath(string $path)

No description

Parameters

string $path

Return Value

UrlImmutable

at line 181
string getPath()

No description

Return Value

string

at line 187
UrlImmutable withQuery(string|array $query)

No description

Parameters

string|array $query

Return Value

UrlImmutable

at line 195
string getQuery()

No description

Return Value

string

at line 201
UrlImmutable withQueryParameter(string $name, mixed $value)

No description

Parameters

string $name
mixed $value

Return Value

UrlImmutable

at line 209
array getQueryParameters()

No description

Return Value

array

at line 215
array|string|null getQueryParameter(string $name)

No description

Parameters

string $name

Return Value

array|string|null

at line 221
UrlImmutable withFragment(string $fragment)

No description

Parameters

string $fragment

Return Value

UrlImmutable

at line 229
string getFragment()

No description

Return Value

string

at line 238
string getAbsoluteUrl()

Returns the entire URI including query string and fragment.

Return Value

string

at line 249
string getAuthority()

Returns the [user[:pass]@]host[:port] part of URI.

Return Value

string

at line 266
string getHostUrl()

Returns the scheme and authority part of URI.

Return Value

string

at line 273
string __toString()

No description

Return Value

string

at line 279
bool isEqual(Url|self $url)

No description

Parameters

Url|self $url

Return Value

bool

at line 289
UrlImmutable resolve(string $reference)

Resolves relative URLs in the same way as browser. If path is relative, it is resolved against base URL, if begins with /, it is resolved against the host root.

Parameters

string $reference

Return Value

UrlImmutable

at line 320
protected string mergePath(string $path)

internal  
 

No description

Parameters

string $path

Return Value

string

at line 327
string jsonSerialize()

No description

Return Value

string

at line 334
final array export()

internal  
 

No description

Return Value

array

Traits

SmartObject