博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
巧用PHP数组函数
阅读量:6541 次
发布时间:2019-06-24

本文共 438 字,大约阅读时间需要 1 分钟。

2014年3月5日 08:48:39

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

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

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

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

1 $arrBlackList = array( 2     'c' => 0, 3     'd' => 0, 4     'e' => 0 5     ); 6  7 $arrInter = array_intersect_key($arrBlackList, $arg); 8  9 $intLen = count($arrInter);10 if (!$intLen) {11     return 1;12 }

 

 

转载地址:http://hbsdo.baihongyu.com/

你可能感兴趣的文章
[Entity Framework] MySQL @ Entity Framework 6
查看>>
Access 64-bit HKLM\Software Registry by 32-bit C#.NET Application
查看>>
jQuery AJAX实现调用页面后台方法
查看>>
【高级算法】模拟退火算法解决3SAT问题(C++实现)
查看>>
win8.1 64位环境搭建android开发环境
查看>>
matlab两种不同模式的并行运算
查看>>
MySQL启动和关闭服务命令
查看>>
微软.NET Core RC2正式发布,横跨所有平台
查看>>
Unix 系统下的 Nginx 1.4.x
查看>>
查找特定文件,修改为当前系统时间
查看>>
WCF 之 概述
查看>>
jquery $post $get $
查看>>
linux find命令-print0和xargs中-0使用技巧(转载)
查看>>
Java实现Redis pipeline比较
查看>>
怎么关闭win10和win8快速启动
查看>>
C#设计模式之十外观模式(Facade Pattern)【结构型】
查看>>
GridControl常见用法【转】
查看>>
CS001496 - Gather data from web page with JavaScript, WebKit, and Qt
查看>>
SQLSERVER中的NUMA架构
查看>>
obiee11g中关闭缓存
查看>>