巧用PHP数组函数

时间:2023-12-31 10:36:08

2014年3月5日 08:48:39

情景:项目中需要根据传递来的参数的不同,使用不同的缓存

假如传递来的参数最多有这几个(在这个范围内,但是每次传过来的参数不确定):

$arg = array(
'a' => '1111',
'b' => '2222',
'c' => '3333',
'd' => '4444',
'e' => '5555'
);

一种情况,当实参中有a或者b,或者没有参数时,将得到的结果缓存起来

 $arrBlackList = array(
'c' => 0,
'd' => 0,
'e' => 0
); $arrInter = array_intersect_key($arrBlackList, $arg); $intLen = count($arrInter);
if (!$intLen) {
return 1;
}