摘要:
1、查看自己PHP的版本 我的是php版本是7.0、VC14、X86。Redis下载地址:http://windows.php.net/downloads/pecl/releases/redis/ igbinary下载地址:http://windows.php.net/downloads/pecl/ 阅读全文
摘要:
PHP 链接Redis测试 <?php$redis = new Redis(); $redis->connect('127.0.0.1', 6379);$redis->auth('myredispassword');$redis ->set( "txt" , "Hello World"); echo 阅读全文