CaseInsensitiveArray
extends ArrayIterator
in package
An array implemented as an object that contains case-insensitive keys.
Tags
Table of Contents
- offsetExists() : bool
- offsetGet() : mixed
- offsetSet() : void
- offsetUnset() : void
- _getRealOffset() : string|null
- Determines the actual array offset given the input offset.
Methods
offsetExists()
public
offsetExists(mixed $offset) : bool
Parameters
- $offset : mixed
Return values
bool —offsetGet()
public
offsetGet(mixed $offset) : mixed
Parameters
- $offset : mixed
Return values
mixed —offsetSet()
public
offsetSet(mixed $offset, mixed $value) : void
Parameters
- $offset : mixed
- $value : mixed
Return values
void —offsetUnset()
public
offsetUnset(mixed $offset) : void
Parameters
- $offset : mixed
Return values
void —_getRealOffset()
Determines the actual array offset given the input offset.
protected
_getRealOffset(string $offset) : string|null
Parameters
- $offset : string
-
Input offset.
Return values
string|null —Real offset or null.