Compare multidimensional arrays in PHP

前端 未结 6 991
情话喂你
情话喂你 2020-11-27 07:35

How can I compare multidimensional arrays in php? Is there a simple way?

6条回答
  •  北海茫月
    2020-11-27 08:20

    Another way to do it is to serialize() both of the arrays and compare the strings.

    http://php.net/manual/en/function.serialize.php

提交回复
热议问题