Zend Framework
1.12
|
Public Member Functions | |
__construct (array $data) | |
Constructor. | |
setData (array $data) | |
Sets the data. | |
getData () | |
Gets the data. | |
__get ($name) | |
Gets a specific attribute from this item. | |
__isset ($name) | |
Checks whether a specific attribute exists. | |
offsetSet ($name, $value) | |
Always throws BadMethodCallException Implements ArrayAccess. | |
offsetGet ($name) | |
Gets a specific attribute from this item. | |
offsetUnset ($name) | |
Always throws BadMethodCallException Implements ArrayAccess. | |
offsetExists ($name) | |
Checks whether a specific attribute exists. | |
count () | |
Returns the number of attributes. | |
Protected Attributes | |
$_data | |
__construct | ( | array | $data | ) |
Constructor.
array | $data |
__get | ( | $name | ) |
Gets a specific attribute from this item.
string | $name |
__isset | ( | $name | ) |
Checks whether a specific attribute exists.
string | $name |
count | ( | ) |
Returns the number of attributes.
Implements Countable
getData | ( | ) |
Gets the data.
offsetExists | ( | $name | ) |
Checks whether a specific attribute exists.
string | $name |
offsetGet | ( | $name | ) |
Gets a specific attribute from this item.
string | $name |
offsetSet | ( | $name, | |
$value | |||
) |
Always throws BadMethodCallException Implements ArrayAccess.
This method is needed for a full implementation of ArrayAccess
string | $name | |
mixed | $value |
BadMethodCallException |
offsetUnset | ( | $name | ) |
Always throws BadMethodCallException Implements ArrayAccess.
This method is needed for a full implementation of ArrayAccess
string | $name |
BadMethodCallException |
setData | ( | array | $data | ) |
|
protected |