PHP+redis实现添加处理投票的方法


Posted in PHP onNovember 14, 2015

本文实例讲述了PHP+redis实现添加处理投票的方法。分享给大家供大家参考,具体如下:

<?php
 header("Content-Type:text/html;charset=utf-8");
 include 'lib/mysql.class.php';
 $mysql_obj = mysql::getConn();
 if(class_exists('Redis')){
  //redis 
  $redis = new Redis();
  $redis->pconnect('127.0.0.1', 6379);
  if(isset($_SERVER['HTTP_REFERER'])){
   $url_md5 = md5($_SERVER['HTTP_REFERER']);
  }
  $adve_key = 'adve'; 
  $adve_key_exists = 'adve_exists';
  if(!$redis->exists($adve_key_exists)){
   $list = $mysql_obj->fetch_array("select * from admin_online_adve");
   if($list){
    foreach ($list as $key => $value) {
     $url_hash = md5($value['adve_url']);
     $adve_hash_key = $adve_key.":".$url_hash;
     $id = $value['id'];
     $redis->set($adve_hash_key,$id);
     $redis->set($adve_key_exists,true);
    }
   }
  }
  $adve_new_key = $adve_key.':'.$url_md5;
  if($redis->exists($adve_new_key)){
    $adve_plus = $adve_new_key.":plus" ;
    if(!$redis->exists($adve_plus)){
     $redis->set($adve_plus,1); 
    }else{
     $redis->incr($adve_plus);
     $num = $redis->get($adve_plus);
     if($num >100){
      $id = $redis->get($adve_new_key);
      // insert to sql;
      $mysql_obj->query("update admin_online_adve set adve_num=adve_num+$num where id=$id");
      $redis->set($adve_plus,1);
     }
    }
  }
 }
?>
<html>
<head>
<meta http-equiv="refresh" content="1;url=https://itunes.apple.com/cn/app/san-guo-zhi15-ba-wangno-da-lu/id694974270?mt=8">
<title>统计</title>
</head>
<body>
 <img src="loading.gif">Loading...
</body>
</html>

其中php连接mysql类mysql.class.php如下:

<?php
define("MYSQL_SQL_GETDATA", 1);
define("MYSQL_SQL_EXECUTE", 2);
class mysql_db{
  var $_server;        //数据库服务器地址
  var $_user;         //数据库连接帐号
  var $_password;       //数据库连接密码
  var $_dbname;        //数据库名称
  var $_persistency=false;  //是否使用持久连接
  var $_isConnect = false;  //是否已经建立数据库连接
  var $_charset="utf8";    //数据库连接字符集
  var $_isDebug = false;   //是否Debug模式
  var $_sql=array();     //执行sql语句数组
  var $_db_connect_id;    //数据库连接对象标识
  var $_result;        //执行查询返回的值
  var $_record;
  var $_rowset;
  var $_errno = 0;
  var $_error = "connection error";
  var $_checkDB = false;
  function mysql_db($dbserver, $dbuser, $dbpassword,$database,$persistency = false,$autoConnect=false,$checkdb = false)
  {
    $this->_server = $dbserver;
    $this->_user = $dbuser;
    $this->_password = $dbpassword;
    $this->_dbname = $database;
    $this->_persistency = $persistency;
    $this->_autoConnect = $autoConnect;
    $this->_checkDB = $checkdb;
    if($autoConnect){
      $this->connection();
    }
  }
  function connection($newLink = false)
  {
    if (!$newLink){
      if($this->_isConnect && isset($this->_db_connect_id)){
        @mysql_close($this->_db_connect_id);
      }
    }
    $this->_db_connect_id = ($this->persistency) ? @mysql_pconnect($this->_server, $this->_user, $this->_password):@mysql_connect($this->_server, $this->_user, $this->_password,$newLink);
    if ($this->_db_connect_id)
    {
      if ($this->version() > '4.1')
      {
        if ($this->_charset != "")
        {
          @mysql_query("SET NAMES '".str_replace('-', '', $this->_charset)."'", $this->_db_connect_id);
        }
      }
      if ($this->version() > '5.0')
      {
        @mysql_query("SET sql_mode=''", $this->_db_connect_id);
      }
      //检测指定数据库是否连接成功
      if ($this->_checkDB){
        $dbname = mysql_query('SELECT database()',$this->_db_connect_id);
        $dbname = mysql_fetch_array($dbname,MYSQL_NUM);
        $dbname = trim($dbname[0]);
      }else{
        $dbname = '';
      }
      if ($dbname==$this->_dbname || $dbname==''){
        if (!@mysql_select_db($this->_dbname, $this->_db_connect_id))
        {
          @mysql_close($this->_db_connect_id);
          $this->_halt("cannot use database " . $this->_dbname);
        }
      }else{
        if ($this->_checkDB && !$newLink){
          $this->connection(true);
        }
      }
      return true;
    }
    else
    {
      $this->_halt('connect failed.',false);
    }
  }
  function setCharset($charset){
    //$charset = str_replace('-', '', $charset);
    $this->_charset = $charset;
  }
  function setDebug($isDebug=true){
    $this->_isDebug = $isDebug;
  }
  function query($sql,$type='')
  {
    return $this->_runSQL($sql,MYSQL_SQL_GETDATA,$type);
  }
  function execute($sql)
  {
    return $this->_runSQL($sql,MYSQL_SQL_EXECUTE,"UNBUFFERED");
  }
  function _runSQL($sql,$sqlType=MYSQL_SQL_GETDATA,$type = '')
  {
    if ($type =="UNBUFFERED"){
      $this->_result = @mysql_unbuffered_query($sql,$this->_db_connect_id);
    }else{
      $this->_result = @mysql_query($sql,$this->_db_connect_id);
    }
    //测试模式下保存执行的sql语句
    if($this->_isDebug){
      $this->_sql[]=$sql;
    }
    if ($this->_result)
    {
      return $sqlType==MYSQL_SQL_GETDATA?$this->getNumRows():$this->getAffectedRows();
    }else{
      $this->_halt("Invalid SQL: ".$sql);
      return false;
    }
  }
  function next($result_type=MYSQL_ASSOC) {
    $this->fetchRow($result_type); 
    return is_array($this->_record);
  }
  function f($name) {
    if(is_array($this->_record)){
      return $this->_record[$name];
    }else{
      return false;
    }
  }
  function fetchRow($result_type=MYSQL_ASSOC)
  {
    if( $this->_result )
    {
      $this->_record = @mysql_fetch_array($this->_result,$result_type);
      return $this->_record;
    }else{
      return false;
    }
  }
  function getAll($sql,$primaryKey="",$result_type=MYSQL_ASSOC)
  {
    if ($this->_runSQL($sql,MYSQL_SQL_GETDATA)>=0){
      return $this->fetchAll($primaryKey,$result_type);
    }else{
      return false;
    }
  }
  function getOne($sql,$result_type=MYSQL_ASSOC)
  {
    if ($this->_runSQL($sql,MYSQL_SQL_GETDATA)>0){
      $arr = $this->fetchAll("",$result_type);
      if(is_array($arr)){
        return $arr[0];
      }
    }else{
      return false;
    }
  }
  function fetchAll($primaryKey = "",$result_type=MYSQL_ASSOC)
  {
    if ($this->_result)
    {
      $i = 0;
      $this->_rowset = array();
      if ($primaryKey=="")
      {
        while($this->next($result_type))
        {
          $this->_rowset[$i] = $this->_record;
          $i++;
        }
      }else{
        while($this->next($result_type))
        {
          $this->_rowset[$this->f($primaryKey)] = $this->_record;
          $i++;
        }
      }
      return $this->_rowset;
    }else{
      //$this->_halt("Invalid Result");
      return false;
    }
  }
  function checkExist($sql)
  {
    return $this->query($sql)>0?true:false;
  }
  function getValue($sql, $colset = 0)
  {
    if ($this->query($sql)>0){
      $this->next(MYSQL_BOTH);
      return $this->f($colset);
    }else{
      return false;
    }
  }
  function getNumRows()
  {
    return @mysql_num_rows($this->_result);
  }
  function getNumFields()
  {
    return @mysql_num_fields($this->_result);
  }
  function getFiledName($offset)
  {
    return @mysql_field_name($this->_result, $offset);
  }
  function getFiledType($offset)
  {
    return @mysql_field_type($this->_result, $offset);
  }
  function getFiledLen($offset)
  {
    return @mysql_field_len($this->_result, $offset);
  }
  function getInsertId()
  {
    return @mysql_insert_id($this->_db_connect_id);
  }
  function getAffectedRows()
  {
    return @mysql_affected_rows($this->_db_connect_id);
  }
  function free_result()
  {
    $ret = @mysql_free_result($this->_result);
    $this->_result = 0;
    return $ret;
  }
  function version() {
    return @mysql_get_server_info($this->_db_connect_id);
  }
  function close() {
    return @mysql_close($this->_db_connect_id);
  }
  function sqlOutput($isOut = true, $all = true){
    if($all){
      $ret = implode("<br>",$this->_sql);
    }else{
      $ret = $this->_sql[count($this->_sql)-1];
    }
    if ($isOut){
      echo $ret;
    }else{
      return $ret;
    }
  }
  function _halt($msg="Session halted.",$getErr=true) {
    if($this->_isDebug){
      if($getErr){
        $this->_errno = @mysql_errno($this->_db_connect_id);
        $this->_error = @mysql_error($this->_db_connect_id);
        printf("<b>MySQL _error</b>: %s (%s)<br></font>/n",$this->_errno,$this->_error);
      }
      die($msg);
    }else{
      die("Session halted.");
    }
  }
}
?>

希望本文所述对大家PHP程序设计有所帮助。

PHP 相关文章推荐
深入理解ob_flush和flush的区别(ob_flush()与flush()使用方法)
Feb 06 PHP
php class中public,private,protected的区别以及实例分析
Jun 18 PHP
php过滤html标记属性类用法实例
Sep 23 PHP
php数组保存文本与文本反编成数组实例
Nov 13 PHP
php使用GD创建保持宽高比缩略图的方法
Apr 17 PHP
mod_php、FastCGI、PHP-FPM等PHP运行方式对比
Jul 02 PHP
win10环境PHP 7 安装配置【教程】
May 09 PHP
PHP 返回13位时间戳的实现代码
May 13 PHP
php实现HTML实体编号与非ASCII字符串相互转换类实例
Nov 02 PHP
Redis使用Eval多个键值自增的操作实例
Nov 04 PHP
php实现的mysqldb读写分离操作类示例
Feb 07 PHP
有关PHP 中 config.m4 的探索
Aug 26 PHP
PHP实现操作redis的封装类完整实例
Nov 14 #PHP
php实现的递归提成方案实例
Nov 14 #PHP
PHP使用Pthread实现的多线程操作实例
Nov 14 #PHP
开启PHP Static 关键字之旅模式
Nov 13 #PHP
php正则表达式学习笔记
Nov 13 #PHP
php邮箱地址正则表达式验证
Nov 13 #PHP
合格的PHP程序员必备技能
Nov 13 #PHP
You might like
php比较相似字符串的方法
2015/06/05 PHP
joomla实现注册用户添加新字段的方法
2016/05/05 PHP
Laravel日志用法详解
2016/10/09 PHP
ThinkPHP5.1框架页面跳转及修改跳转页面模版示例
2019/05/06 PHP
JQuery入门——事件切换之toggle()方法应用介绍
2013/02/05 Javascript
jQuery中的siblings用法实例分析
2015/12/24 Javascript
快速掌握jQuery插件开发
2017/01/19 Javascript
zTree jQuery 树插件的使用(实例讲解)
2017/09/25 jQuery
JS实现小球的弹性碰撞效果
2017/11/11 Javascript
Router解决跨模块下的页面跳转示例
2018/01/11 Javascript
深入浅析Vue.js中 computed和methods不同机制
2018/03/22 Javascript
解决vue项目nginx部署到非根目录下刷新空白的问题
2018/09/27 Javascript
mpvue开发音频类小程序踩坑和建议详解
2019/03/12 Javascript
微信小程序转发事件实现解析
2019/10/22 Javascript
vue 指令和过滤器的基本使用(品牌管理案例)
2019/11/04 Javascript
python开发的小球完全弹性碰撞游戏代码
2013/10/15 Python
python使用PyGame播放Midi和Mp3文件的方法
2015/04/24 Python
Python随手笔记之标准类型内建函数
2015/12/02 Python
微信跳一跳python自动代码解读1.0
2018/01/12 Python
django 取消csrf限制的实例
2020/03/13 Python
python 进程池pool使用详解
2020/10/15 Python
Python爬虫实战案例之爬取喜马拉雅音频数据详解
2020/12/07 Python
selenium自动化测试入门实战
2020/12/21 Python
美国知名的摄影器材销售网站:Adorama
2017/02/01 全球购物
宝信软件JAVA工程师面试经历
2012/08/19 面试题
nohup的用法
2012/11/26 面试题
机械专业毕业生推荐信范文
2013/11/25 职场文书
通信工程专业毕业生推荐信
2013/12/25 职场文书
先进集体事迹材料范文
2014/12/25 职场文书
给老婆的检讨书1000字
2015/01/01 职场文书
环卫个人总结
2015/03/03 职场文书
2015年人事科工作总结
2015/04/28 职场文书
农村婚礼司仪主持词
2015/06/29 职场文书
公司保洁员管理制度
2015/08/04 职场文书
Python机器学习之基于Pytorch实现猫狗分类
2021/06/08 Python
vue3种table表格选项个数的控制方法
2022/04/14 Vue.js