如何实际比较数据库中两种不同的数据结构? 或者我应该问一下,如何检查结构是否与另一个结构完全匹配。
例如:
我想通过简单数据将结构与带数组的其他数据进行比较。
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专业人员都知道如何灵活地解决它?