所属分类:PHP工具与代码
转载自http://goodswiee.com/60
[code]$q = array(1,2,30,40,50);
$s = array(1,2,4,8,9,9,34,2,12,324,3,34,343);
$m=array_intersect($q,$s); //共同的部分
//老的数据
$old=array_diff($q,$m);
print_r($old);
//新的数据
$new=array_diff($s,$m);
print_r($new);[/code]
[code]$q = array(1,2,30,40,50);
$s = array(1,2,4,8,9,9,34,2,12,324,3,34,343);
$m=array_intersect($q,$s); //共同的部分
//老的数据
$old=array_diff($q,$m);
print_r($old);
//新的数据
$new=array_diff($s,$m);
print_r($new);[/code]