PHP Array and ArrayObject

后端 未结 6 1840
鱼传尺愫
鱼传尺愫 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:44

    arrayObject is mostly useful when serialization is needed.

    Also you can create your own collection class by extending arrayObject. Then you can serialize your class object to transfer data.

    for simple and usual operation array is more prefferable than arrayObject.

提交回复
热议问题