PHP Array and ArrayObject

后端 未结 6 1841
鱼传尺愫
鱼传尺愫 2021-02-02 08:03

which one should be used to manipulating data, Array or Array Object? Like search,sort and other array manipulations.

6条回答
  •  被撕碎了的回忆
    2021-02-02 08:24

    you use array for simple (and standard) arrays

    ArrayObject is a class, which can be used to enhance your own Classes to be used as arrays (say some Collection Class of yours)

提交回复
热议问题