如何实际比较数据库中两种不同结构的数据?或者我应该问,如何检查结构是否与另一个结构完全匹配。
例如:
我想将简单数据的结构与另一个数组数据进行比较。
if($data == $data[1]) << this case will have to return false because first data do not have array.
第二个样本,如果数据是:
if($data[1] == $data[1][2][3]) << this case should also return false.
但
if($data[5][6] == $data[1][2]) << this case must return a true as I only wanted to compare the structure..
任何 php 专业人士都知道如何灵活地解决它?