Class AbstractLocation

Summary

Fully Qualified Name: Zend\Http\Header\AbstractLocation
Implements: HeaderInterface

Description

Abstract Location Header Supports headers that have URI as value

Methods

Name Description Defined By
__toString() Allow casting to string AbstractLocation
fromString() Create location-based header from string AbstractLocation
getFieldValue() Get header value as URI string AbstractLocation
getUri() Return the URI for this header AbstractLocation
setUri() Set the URI/URL for this header, this can be a string or an instance of Zend\Uri\Http AbstractLocation
toString() Output header line AbstractLocation
uri() Return the URI for this header as an instance of Zend\Uri\Http AbstractLocation

Method Details

__toString()

Allow casting to string

Returns: string

fromString()

Create location-based header from string

Parameter Name Type Description
$headerLine string

Returns: \AbstractLocation

getFieldValue()

Get header value as URI string

Returns: string

getUri()

Return the URI for this header

Returns: string

setUri()

Set the URI/URL for this header, this can be a string or an instance of Zend\Uri\Http

Parameter Name Type Description
$uri string|\UriInterface

Returns: \AbstractLocation

toString()

Output header line

Returns: string

uri()

Return the URI for this header as an instance of Zend\Uri\Http

Returns: \UriInterface

Top