Interface HeaderInterface
An object that can be represented as an array
-
Guzzle\Http\Message\Header\HeaderInterface
implements
Guzzle\Common\ToArrayInterface,
Countable,
IteratorAggregate
Methods summary
public
string
|
#
__toString( )
Convert the header to a string
Convert the header to a string
Returns
string
|
public
Guzzle\Http\Message\Header\HeaderInterface
|
#
add( string $value )
Add a value to the list of header values
Add a value to the list of header values
Parameters
- $value
- Value to add to the header
Returns
|
public
string
|
#
getName( )
Get the name of the header
Get the name of the header
Returns
string
|
public
Guzzle\Http\Message\Header\HeaderInterface
|
#
setName( string $name )
Change the name of the header
Change the name of the header
Parameters
Returns
|
public
Guzzle\Http\Message\Header\HeaderInterface
|
#
setGlue( string $glue )
Change the glue used to implode the values
Change the glue used to implode the values
Parameters
- $glue
- Glue used to implode multiple values
Returns
|
public
string
|
#
getGlue( )
Get the glue used to implode multiple values into a string
Get the glue used to implode multiple values into a string
Returns
string
|
public
boolean
|
#
hasValue( string $searchValue )
Check if the collection of headers has a particular value
Check if the collection of headers has a particular value
Parameters
- $searchValue
- Value to search for
Returns
boolean
|
public
Guzzle\Http\Message\Header\HeaderInterface
|
#
removeValue( string $searchValue )
Remove a specific value from the header
Remove a specific value from the header
Parameters
- $searchValue
- Value to remove
Returns
|
public
array
|
#
parseParams( )
Parse a header containing ";" separated data into an array of associative arrays representing the header
key value pair data of the header. When a parameter does not contain a value, but just contains a key, this
function will inject a key with a '' string value.
Parse a header containing ";" separated data into an array of associative arrays representing the header
key value pair data of the header. When a parameter does not contain a value, but just contains a key, this
function will inject a key with a '' string value.
Returns
array
|