This class is meant to manipulate data in array entries.
It is capable of moving an element from a position to another, deleting an element, and inserting elements in specific position.
In PHP you can use array indexed by numeric integer position, associative arrays index by string keys, and arrays indexed by a mix of integers or string keys . Although it is not recommended to use the mixed type of indexed arrays, this class also supports such type of arrays.
You can specify which type of indexing you want to use when you call the class constructor. The default is to work with integer indexed arrays. |