/*
*本人用的TP框架梧躺,因此該函數(shù)只需要放入common中即可
*$value:變量 $array二維數(shù)組
*return bool
*/
function deep_in_array($value, $array) {
? ? foreach($array as $item) {
? ? ? ? if(!is_array($item)) {
? ? ? ? ? ? if ($item == $value) {
? ? ? ? ? ? ? ? return true;
? ? ? ? ? ? } else {
? ? ? ? ? ? ? ? continue;
? ? ? ? ? ? }
}
? ? ? ? if(in_array($value, $item)) {
? ? ? ? ? ? return true;
? ? ? ? } else if(deep_in_array($value, $item)) {
? ? ? ? ? ? return true;
? ? ? ? }
}
? ? return false;
}
Eg:$arr為一位數(shù)組跛梗。$data_mission_loop為二維數(shù)組款熬。
第一個foreach獲取得到$arr 第二個foreach 判斷一位數(shù)組中的數(shù)據(jù)是否在二維數(shù)組中羊瘩,如果在岛心,那二維數(shù)組就刪除該條數(shù)據(jù)题画。
若還不能理解,即可聯(lián)系本人 Q:810145892 新手一枚压储,望大神勿噴鲜漩。僅僅是記錄一些方法,以便之后好調(diào)用