我有两个数组要比较,我不知道该怎么做。这是我的代码:
$configStructure =
array('name'=>'Example','description'=>'Example','user'=>'Blabla');
这个数组(上图)是其他配置的结构或模式数组。
$config =
array('name'=>'Application name','desc'=>'My description of app','user'=>'Alex');
我想创建一个比较这些数组的函数。
function checkStructure($configStructure, $config){
//the function, here will return false because the $config don't have the same structure of $configStructure(description is replace by desc)
}
对不起,如果我的问题在语法上不正确,我的英语不是很好。感谢帮助 :)