Classes that extend the class and support attributes must defined them during construct:
<?phpnamespace ICanBoogie\HTTP\Headers;
class ContentDisposition extendsHeader
{
publicfunction __construct($value=null, array$attributes=[])
{
$this->parameters['filename'] = new HeaderParameter('filename');
parent::__construct($value, $attributes);
}
}
Magic properties are automatically mapped to parameters. The value of a parameter is accessed
through its corresponding property:
<?php$cd = new ContentDisposition;
$cd->filename = "Statistics.csv";
echo$cd->filename;
// "Statistics.csv"
The instance of the parameter itself is accessed using the header as an array:
<?php$cd = new ContentDisposition;
$cd['filename']->value = "Statistics.csv";
$cd['filename']->language = "en";
An alias to the ICanBoogie\HTTP\Headers\Header::$value property can be defined by using the VALUE_ALIAS constant. The
following code defines type as an alias:
Parse the provided source and extract its value and parameters.
Parse the provided source and extract its value and parameters.
Parameters
$source
The source to create the instance from.
Returns
array
Throws
InvalidArgumentException
if $source is not a string nor an object implementing
__toString().
public
offsetExists( string$attribute )
: boolean
Checks if a parameter exists.
Checks if a parameter exists.
Parameters
$attribute
Returns
boolean
Implementation of
ArrayAccess::offsetExists()
public
offsetUnset( string$attribute )
Sets the value of a parameter to null.
Sets the value of a parameter to null.
Parameters
$attribute
Implementation of
ArrayAccess::offsetUnset()
public
offsetSet( string$attribute, mixed$value )
Sets the value of a parameter.
Sets the value of a parameter.
If the value is an instance of ICanBoogie\HTTP\Headers\HeaderParameter then the parameter is replaced,
otherwise the value of the current parameter is updated and its language is set to null.
Parameters
$attribute
$value
Throws
ICanBoogie\OffsetNotDefined in attempt to access a parameter that is not defined.