Class yii\web\HeaderCollection
HeaderCollection is used by yii\web\Response to maintain the currently registered HTTP headers.
公共属性
属性 | 类型 | 描述 | 被定义在 |
---|---|---|---|
$count | integer | The number of headers in the collection. | yii\web\HeaderCollection |
$iterator | ArrayIterator | An iterator for traversing the headers in the collection. | yii\web\HeaderCollection |
公共方法
方法 | 描述 | 被定义在 |
---|---|---|
__call() | Calls the named method which is not a class method. | yii\base\BaseObject |
__construct() | Constructor. | yii\base\BaseObject |
__get() | Returns the value of an object property. | yii\base\BaseObject |
__isset() | Checks if a property is set, i.e. defined and not null. | yii\base\BaseObject |
__set() | Sets value of an object property. | yii\base\BaseObject |
__unset() | Sets an object property to null. | yii\base\BaseObject |
add() | Adds a new header. | yii\web\HeaderCollection |
canGetProperty() | Returns a value indicating whether a property can be read. | yii\base\BaseObject |
canSetProperty() | Returns a value indicating whether a property can be set. | yii\base\BaseObject |
className() | Returns the fully qualified name of this class. | yii\base\BaseObject |
count() | Returns the number of headers in the collection. | yii\web\HeaderCollection |
fromArray() | Populates the header collection from an array. | yii\web\HeaderCollection |
get() | Returns the named header(s). | yii\web\HeaderCollection |
getCount() | Returns the number of headers in the collection. | yii\web\HeaderCollection |
getIterator() | Returns an iterator for traversing the headers in the collection. | yii\web\HeaderCollection |
has() | Returns a value indicating whether the named header exists. | yii\web\HeaderCollection |
hasMethod() | Returns a value indicating whether a method is defined. | yii\base\BaseObject |
hasProperty() | Returns a value indicating whether a property is defined. | yii\base\BaseObject |
init() | Initializes the object. | yii\base\BaseObject |
offsetExists() | Returns whether there is a header with the specified name. | yii\web\HeaderCollection |
offsetGet() | Returns the header with the specified name. | yii\web\HeaderCollection |
offsetSet() | Adds the header to the collection. | yii\web\HeaderCollection |
offsetUnset() | Removes the named header. | yii\web\HeaderCollection |
remove() | Removes a header. | yii\web\HeaderCollection |
removeAll() | Removes all headers. | yii\web\HeaderCollection |
set() | Adds a new header. | yii\web\HeaderCollection |
setDefault() | Sets a new header only if it does not exist yet. | yii\web\HeaderCollection |
toArray() | Returns the collection as a PHP array. | yii\web\HeaderCollection |
属性详情
The number of headers in the collection.
An iterator for traversing the headers in the collection.
方法详情
Adds a new header.
If there is already a header with the same name, the new one will be appended to it instead of replacing it.
public $this add($name, $value) | ||
$name | string | The name of the header |
$value | string | The value of the header |
return | $this | The collection object itself |
---|
Returns the number of headers in the collection.
This method is required by the SPL Countable
interface.
It will be implicitly called when you use count($collection)
.
public integer count() | ||
return | integer | The number of headers in the collection. |
---|
Populates the header collection from an array.
public void fromArray(array $array) | ||
$array | array | The headers to populate from |
Returns the named header(s).
public string|array get($name, $default = null, $first = true) | ||
$name | string | The name of the header to return |
$default | mixed | The value to return in case the named header does not exist |
$first | boolean | Whether to only return the first header of the specified name. If false, all headers of the specified name will be returned. |
return | string|array | The named header(s). If |
---|
Returns the number of headers in the collection.
public integer getCount() | ||
return | integer | The number of headers in the collection. |
---|
Returns an iterator for traversing the headers in the collection.
This method is required by the SPL interface IteratorAggregate.
It will be implicitly called when you use foreach
to traverse the collection.
public ArrayIterator getIterator() | ||
return | ArrayIterator | An iterator for traversing the headers in the collection. |
---|
Returns a value indicating whether the named header exists.
public boolean has($name) | ||
$name | string | The name of the header |
return | boolean | Whether the named header exists |
---|
Returns whether there is a header with the specified name.
This method is required by the SPL interface ArrayAccess.
It is implicitly called when you use something like isset($collection[$name])
.
public boolean offsetExists($name) | ||
$name | string | The header name |
return | boolean | Whether the named header exists |
---|
Returns the header with the specified name.
This method is required by the SPL interface ArrayAccess.
It is implicitly called when you use something like $header = $collection[$name];
.
This is equivalent to get().
public string offsetGet($name) | ||
$name | string | The header name |
return | string | The header value with the specified name, null if the named header does not exist. |
---|
Adds the header to the collection.
This method is required by the SPL interface ArrayAccess.
It is implicitly called when you use something like $collection[$name] = $header;
.
This is equivalent to add().
public void offsetSet($name, $value) | ||
$name | string | The header name |
$value | string | The header value to be added |
Removes the named header.
This method is required by the SPL interface ArrayAccess.
It is implicitly called when you use something like unset($collection[$name])
.
This is equivalent to remove().
public void offsetUnset($name) | ||
$name | string | The header name |
Removes a header.
public array remove($name) | ||
$name | string | The name of the header to be removed. |
return | array | The value of the removed header. Null is returned if the header does not exist. |
---|
Removes all headers.
public void removeAll() |
Adds a new header.
If there is already a header with the same name, it will be replaced.
public $this set($name, $value = '') | ||
$name | string | The name of the header |
$value | string | The value of the header |
return | $this | The collection object itself |
---|
Sets a new header only if it does not exist yet.
If there is already a header with the same name, the new one will be ignored.
public $this setDefault($name, $value) | ||
$name | string | The name of the header |
$value | string | The value of the header |
return | $this | The collection object itself |
---|
Returns the collection as a PHP array.
public array toArray() | ||
return | array | The array representation of the collection. The array keys are header names, and the array values are the corresponding header values. |
---|