<?php
$redis_conf = array (
"active_code"=>array(
"host" => "14.29.64.112",
"port" => "8899",
"pass" => "funova2014"
)
);
 
 
 
 
#微信签名
private function checkSignature()
{
$signature = $_GET["signature"];
$timestamp = $_GET["timestamp"];
$nonce = $_GET["nonce"]; $token = TOKEN;
$tmpArr = array($token, $timestamp, $nonce);
sort($tmpArr);
$tmpStr = implode( $tmpArr );
$tmpStr = sha1( $tmpStr ); if( $tmpStr == $signature ){
return true;
}else{
return false;
}
}
#连接redis
function getSocket(){
include_once ("phpRedis.class.php");
$phpRedis = new phpRedis ();
$phpRedis->master = "active_code";
include ("redis.conf.php");
#授权
$phpRedis->auth ($redis_conf ["active_code"]['pass']);
return $phpRedis;
}
#获取激活码
function index($key){
#连接redis
$redis=$this->getSocket();
$redis->connect();
return $redis->lpop("$key");
#return $redis->hgetall('code_hash');
}
#把已经读取的激活码写入redis中
function set_code($code,$userid){
#连接redis
$redis=$this->getSocket();
$redis->connect();
return $redis->hset('code_hash_wx',$code,$userid);
#return $redis->hgetall('code_hash');
}
 
 
 
 
 
 
 
 
 
 
 
 
 
<?php
#class Php5RedisException extends Exception {}
class phpRedis
{
/*
* $port 端口 6379
* $host 主机 192.168.1.28
*/
// redisS务器的地址 private $md5key = "funova_aws_redis"; public $master="active_code"; static private $_sock = NULL;
// 保存数据库连接资源
public static $linkID = array ();
/**
* 链接redis服务器
*/
public function connect() {
error_reporting(E_ALL ^ E_NOTICE);
include("redis.conf.php");
$this->host = $redis_conf [$this->master]['host'];
$this->port = $redis_conf [$this->master]['port']; if (!is_null(self::$linkID[$this->master]))
return;
$sock = fsockopen ( $this->host, $this->port, $errno, $errstr );
if ($sock) {
self::$linkID [$this->master] = $sock;
$this->debug('Connected');
return;
}
$msg = "Cannot open socket to {$this->host}:{$this->port}";
if ($errno || $errmsg)
$msg .= "," . ($errno ? " error $errno" : "") . ($errmsg ? " $errmsg" : "");
error_log ( "$msg." ,3,"/tmp/hivePhpLog/redis.log");
}
/**
* 错误提示
* @param unknown_type $msg
*/
private function debug($msg){
//echo sprintf("[php_redis] %s\n", $msg);
}
/**
* 对cmd接收到的函数进行处理
* 并且返回数据
*/
private function cmdResponse() {
// Read the response
$s = trim ( $this->read () );
switch ($s [0]) {
case '-' : // Error message
throw new Php5RedisException ( substr ( $s, 1 ) );
break;
case '+' : // Single line response
return substr ( $s, 1 );
case ':' : //Integer number
return substr ( $s, 1 ) + 0;
case '$' : //Bulk data response
$i = ( int ) (substr ( $s, 1 ));
if ($i == - 1)
return null;
$buffer = '';
if ($i == 0){
$s = $this->read ();
}
while ( $i > 0 ) {
$s = $this->read ();
$l = strlen ( $s );
$i -= $l;
if ($i < 0)
$s = substr ( $s, 0, $i );
$buffer .= $s;
}
return $buffer;
break;
case '*' : // Multi-bulk data (a list of values)
$i = ( int ) (substr ( $s, 1 ));
if ($i == - 1)
return null;
$res = array ();
for($c = 0; $c < $i; $c ++) {
$res [] = $this->cmdResponse ();
}
return $res;
break;
default :
error_log ( 'Unknown responce line: ' . $s,3,"redis.log");
break;
}
}
/**
* 接收命令并且返回结果集
* @param unknown_type $command
*/
private function cmd($command) {
$this->debug('Command: '.$command);
$this->connect ();
$s = $command . "\r\n";
while ( $s ) {
$i = fwrite ( self::$linkID [$this->master], $s );
if ($i == 0)
break;
$s = substr ( $s, $i );
}
return $this->cmdResponse ();
}
/**
* 读取指定长度的字符
* @param unknown_type $len
*/
private function read($len = 1024) {
if ($s = fgets ( self::$linkID [$this->master] )) {
$this->debug('Read: '.$s.' ('.strlen($s).' bytes)');
return $s;
}
$this->disconnect ();
error_log ( "Cannot read from socket.",3,"redis.log" );
}
/**
* 关闭redis链接
*/
private function disconnect() {
if (self::$linkID [$this->master])
@fclose ( self::$linkID [$this->master] );
self::$linkID [$this->master] = null;
}
/**
* L_C_48单一数据
* @param $key
* @param $value
*/
function set($key, $value) {
return $this->cmd ("SET $key $value");
}
/**
* 批量L_C_48数据
* @param $array
*/
function setArray($array) {
if(is_array($array)){
foreach($array as $key =>$val){
$this->cmd ("SET $key $val");
}
}
return;
}
/**
* 根据$key获取数据
* @param $key
*/
function get($key) {
return $this->cmd ("GET $key");
}
/**
* 返回匹配指定模式的所有key
* @param $pattern
*/
function keys($pattern) {
return $this->cmd ("KEYS $pattern");
}
/**
* 设定L_C_181
*/
function setExpire($key,$expire){
return $this->cmd ("expire $key $expire ");
}
/**
* 从队到左边入队一个元素
*/
function lpush($key,$value){
if ($this->master == "debug") { // 内部
return $this->cmd("lpush $key $value");
} else {
return $this->cmd("lpush $key '$value'");
}
}
/**
* 从队到左边出队一个元素
*/
function lpop($key){
return $this->cmd("lpop $key");
}
/**
* 验证密码
*/
function auth ( $pass ){
return $this->cmd("auth $pass");
}
/**
* 发送信息
*/
function publish($key,$content){
/**
* 当前是否在开发模式
*/
if ($this->master == "debug") { // 内部
return $this->cmd("publish $key $content");
} else {
return $this->cmd("publish $key '$content'");
}
}
/**
* setnx
*/
function setnx($key,$value){
return $this->setnx("SETNX $key $value");
}
/**
* L_C_26记录
*/
function delete($key){
return $this->cmd("DEL $key");
}
/**
* 监听频道
*/
function subscribe($key){
return $this->cmd("SUBSCRIBE $key");
}
/**
* 读取list文件
*/
function lrange($key){
return $this->cmd("LRANGE $key 0 -1");
}
/**
* 插入hash数组
*/
function hset($key,$filed, $value){
return $this->cmd("hset $key $filed $value");
}
/**
* 删除list
*/
function lrem($key,$value){
return $this->cmd("lrem $key -2 ".$value);
}
/**
*获取所有的值
*/
function hgetall($key){
return $this->cmd("hgetall $key");
}
/**
*判断key是否存在
*/
function exists_key($key){ return $this->cmd("EXISTS $key");
}
/**
*判断判断key中有没有当前这个域
*/
function exists_filed($key,$field){
return $this->cmd("hexists $key $field");
}
/**
*返回并删除链表尾元素
*/
function rpop($key){
return $this->cmd("rpop $Key");
}
/**
*
*/
function rpush($key,$value){
return $this->cmd("rpush $Key $value");
} }
?>
 
 
 
 
 

php 远程调用redis的更多相关文章

  1. Spring远程调用技术<2>-Hessian和Burlap

    上篇谈到RMI技术,加上Spring的封装,用起来很方便,但也有一些限制 这里的Hessian和Burlap解决了上篇提到的限制,因为他们是基于http的轻量级远程服务. Hessian,和RMI一样 ...

  2. 架构设计:远程调用服务架构设计及zookeeper技术详解(下篇)

    一.下篇开头的废话 终于开写下篇了,这也是我写远程调用框架的第三篇文章,前两篇都被博客园作为[编辑推荐]的文章,很兴奋哦,嘿嘿~~~~,本人是个很臭美的人,一定得要截图为证: 今天是2014年的第一天 ...

  3. 架构设计:一种远程调用服务的设计构思(zookeeper的一种应用实践)

    在深入学习zookeeper我想先给大家介绍一个和zookeeper相关的应用实例,我把这个实例命名为远程调用服务.通过对这种应用实例的描述,我们会对zookeeper应用场景会有深入的了解. 远程调 ...

  4. 【Java EE 学习 78 中】【数据采集系统第十天】【Spring远程调用】

    一.远程调用概述 1.远程调用的定义 在一个程序中就像调用本地中的方法一样调用另外一个远程程序中的方法,但是整个过程对本地完全透明,这就是远程调用.spring已经能够非常成熟的完成该项功能了. 2. ...

  5. 深入浅出Alljoyn——实例分析之远程调用(Method)篇

    深入浅出就是很深入的学习了很久,还是只学了毛皮,呵呵! 服务端完整代码: #include <qcc/platform.h> #include <assert.h> #incl ...

  6. .Net组件程序设计之远程调用(二)

    .Net组件程序设计之远程调用(二) 激活模式 引用封送对象激活类型两种, 一种是客户端激活类型,一种是服务器端激活. 客户端激活对象 客户端激活方式:当客户端创建一个远程对象时,客户端得到的是一个新 ...

  7. .Net组件程序设计之远程调用(一)

    .Net组件程序设计之远程调用(一) 1应用程序域 我们知道我们写的C#代码是在操作系统逻辑体系结构中最上层的,然而操作系统本身是不会认识C#代码的,它只认识机器代码.那我们写的程序经过编译后是编译成 ...

  8. Spring远程调用技术<3>-Spring的HTTP Invoker

    前面提到RMI使用java标准的对象序列化机制,但是很难穿透防火墙.  另一方面,Hessian和Burlap能很好地穿透防火墙,但是使用私有的对象序列化机制. Spring提供的http invke ...

  9. Spring远程调用技术<1>-RMI

    在java中,我们有多种可以使用的远程调用技术 1.远程方法调用(remote method invocation, RMI)  适用场景:不考虑网络限制时(例如防火墙),访问/发布基于java的服务 ...

随机推荐

  1. 【记录一下】phpMyAdmin 4.5.0-beta1 发布,要求 PHP 5.5

    详情点击: [开源中国]http://www.oschina.net/news/65696/phpmyadmin-4-5-0-beta1 [phpMyAdmin]https://www.phpmyad ...

  2. How to determine what causes a particular wait type

      By: Paul Randal Posted on: March 18, 2014 6:55 pm   [Edit 2016: Check out my new resource – a comp ...

  3. Debian安装VirtualBox增强工具

    切换到root用户: apt-get install build-essential 或者 apt-get install gcc make apt-get install dkms apt-get ...

  4. RMAN 备份恢复 删除表空间后控制文件丢失

    先备份一个控制文件 RMAN> backup current controlfile tag='bak_ctlfile' format='/home/oracle/backup/bak_ctl_ ...

  5. JS中event.preventDefault()取消默认事件能否还原?

    参考知乎讨论:https://www.zhihu.com/question/21891734

  6. Xamarin.Forms 调用 腾讯地图SDK

    Xamarin.Forms研究了好一段时间了,最近一直在学习中,想尝试一下调用其他的SDK,就如腾讯地图SDK(申请容易). 完成此次项目得感谢以下链接: http://www.cnblogs.com ...

  7. Linux内核分析(九)——总结篇

    序:写在前面的话        本次内容作为Linux内核的总结内容,主要涉及对Linux系统的总体的一些理解,同时将之前的一些总结贴出来作为大家的一个索引,希望笔者的博客能对和笔者一样的菜鸟有一些帮 ...

  8. fl2440字符设备led驱动

    首先要明白字符设备驱动注册的基本流程 当我们调用insomd命令加载驱动后,驱动程序从module_init函数开始执行:硬件初始化 -> 申请主次设备号 -> 定义fops(file_o ...

  9. 扩展 jQuery EasyUI Datagrid 数据行鼠标悬停/离开事件(onMouseOver/onMouseOut)

    客户需求: jQuery EasyUI Datagrid 用户列表鼠标悬停/离开数据行时显示人员头像(onMouseOver/onMouseOut) 如图所示,Datagrid 鼠标悬停/离开数据行时 ...

  10. ubuntu中wifi显示被硬件禁用的解决方法

    本人使用的电脑是华硕X550C,安装了ubuntu16.04版本. 联网的时候显示“wifi已经通过硬件开关禁用”.按Fn+F2无法开启wifi.通过rfkill命令无法也无法开启wifi. 经过了解 ...