Methods summary
public static
|
|
public static
|
|
public
|
|
public
boolean
|
#
offsetExists( mixed $offset )
(PHP 5 >= 5.0.0)
Whether a offset exists
(PHP 5 >= 5.0.0)
Whether a offset exists
Parameters
- $offset
An offset to check for.
Returns
boolean true on success or false on failure.
<
p>
The return value will be casted to boolean if non-boolean was returned.
Link
Implementation of
ArrayAccess::offsetExists()
|
public
mixed
|
#
offsetGet( mixed $offset )
(PHP 5 >= 5.0.0)
Offset to retrieve
(PHP 5 >= 5.0.0)
Offset to retrieve
Parameters
- $offset
The offset to retrieve.
Returns
mixed Can return all value types.
Link
Implementation of
ArrayAccess::offsetGet()
|
public
|
#
offsetSet( mixed $offset, mixed $value )
(PHP 5 >= 5.0.0)
Offset to set
(PHP 5 >= 5.0.0)
Offset to set
Parameters
- $offset
The offset to assign the value to.
- $value
The value to set.
Link
Implementation of
ArrayAccess::offsetSet()
|
public
|
#
offsetUnset( mixed $offset )
(PHP 5 >= 5.0.0)
Offset to unset
(PHP 5 >= 5.0.0)
Offset to unset
Parameters
- $offset
The offset to unset.
Link
Implementation of
ArrayAccess::offsetUnset()
|