php_redis-2.2.5-5.6-ts-vc11-x64.zip 下载链接 https://windows.php.net/downloads/pecl/releases/redis/2.2.7/
php_igbinary-2.0.1-5.6-ts-vc11-x64.zip.zip 下载链接 https://windows.php.net/downloads/pecl/releases/igbinary/2.0.1/
或者点击此处下载
; php_redis extension=php_igbinary.dll extension=php_redis.dll
新建一个test.php页面
<?php $redis = new Redis(); $redis->connect('127.0.0.1',6379); $redis->set('test','hello redis'); echo $redis->get('test'); ?>hello redis
如果报错 Fatal error: Uncaught exception ‘RedisException’ with message ‘Redis server went away’
安装redis软件可查看下面 https://blog.csdn.net/huangkang1995/article/details/109193844
感谢原文出处 https://blog.csdn.net/miss_mindada/article/details/78354468