<?php header(‘content-type:text/html;chaeset=utf-8‘); /** * redis实战 * * 发布 * * @example php publish.php */ //发布 $redis = new \Redis(); $redis->connect(‘127.0.0.1‘, 6379); $redis->publish(‘msg‘, ‘来自msg频道的推送‘); echo "msg频道消息推送成功~ \n"; $redis->close(); ?>
时间: 2024-10-20 21:10:35