码迷,mamicode.com
首页 > 其他好文 > 详细

redis 学习 六 订阅

时间:2017-09-07 23:03:25      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:channel   red   head   nec   header   php   func   ext   blog   

<?php
header(‘content-type:text/html;chaeset=utf-8‘);
/**
 * redis实战
 *
 * 订阅
 *
 * @example php subscribe.php
 */
//ini_set(‘default_socket_timeout‘, -1);
$redis = new \Redis();
$redis->pconnect(‘127.0.0.1‘, 6379);
//订阅
echo "订阅msg这个频道,等待消息推送... \n";
$redis->subscribe([‘msg‘], ‘callfun‘);
function callfun($redis, $channel, $msg)
{
  print_r([
      ‘redis‘   => $redis,
      ‘channel‘ => $channel,
      ‘msg‘     => $msg
  ]);
}
?>

  

redis 学习 六 订阅

标签:channel   red   head   nec   header   php   func   ext   blog   

原文地址:http://www.cnblogs.com/GreenForestQuan/p/7492143.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!