which one should be used to manipulating data, Array or Array Object? Like search,sort and other array manipulations.
you use array for simple (and standard) arrays
array
ArrayObject is a class, which can be used to enhance your own Classes to be used as arrays (say some Collection Class of yours)
ArrayObject