05 2020 档案

摘要:1、查看自己PHP的版本 我的是php版本是7.0、VC14、X86。Redis下载地址:http://windows.php.net/downloads/pecl/releases/redis/ igbinary下载地址:http://windows.php.net/downloads/pecl/ 阅读全文
posted @ 2020-05-18 16:09 有洁癖的隔壁老王 阅读(168) 评论(0) 推荐(0)
摘要:PHP 链接Redis测试 <?php$redis = new Redis(); $redis->connect('127.0.0.1', 6379);$redis->auth('myredispassword');$redis ->set( "txt" , "Hello World"); echo 阅读全文
posted @ 2020-05-18 13:54 有洁癖的隔壁老王 阅读(206) 评论(0) 推荐(0)