Next Sep 21 Previous
Item 547231
You want to create you're own array objects that can be used in PHP array functions such as array_key_exists(), asort() and array_keys(). So your array class:
A: implements Countable
B: implements Countable and ArrayAcces
C: implements Countable, ArrayAcces and Iterator
D: extends ArrayObject
E: none of the above



