先执行php-m,如果没有看到redis,那么就需要安装phpredis扩展下载源码,我们假定在家目录下有个git文件夹来管理git文件$cd~/git/$gitclonehttps://github.com/phpredis/phpredis.git将下载下来的源码移动到/etc文件下,然后进入这个目录下$mvphpredis//etc/$cd/etc/phpredis执行phpize生成编译文
分类:
Web程序 时间:
2019-06-12 20:02:51
阅读次数:
166
bu要在网上顺便找个redis扩展,一是不安全,而是,别人的redis可能只能new,能连接,但是不保证是否能进行其他操作, 1.百度一下php redis扩展. 搜索到这个网址:http://pecl.php.net/package/redis 选择stable稳定版本.wget 地址 tar - ...
分类:
Web程序 时间:
2019-06-10 14:07:48
阅读次数:
120
1、安装redis 下载:https://github.com/nicolasff/phpredis/archive/2.2.4.tar.gz 上传phpredis-2.2.4.tar.gz到/usr/local/src目录 cd /usr/local/src #进入软件包存放目录 tar zxvf ...
分类:
Web程序 时间:
2019-04-30 20:07:22
阅读次数:
193
一,php中redis扩展安装配置 1、 首先重要一点是:你要知道你的php版本信息,这会决定你的扩展文件版本。特别需要记住一点的是,redis选择x64或者x86,是以php版本的Architecture是x64或者x86决定的,跟windows操作系统无关 的。使用cmd命令“php -v”查看 ...
1. 安装redis Redis安装流程请移步 https://www.cnblogs.com/IT-Crowd/articles/10626765.html 2. 下载Redis扩展 [root@root php-extension]# wget https://pecl.php.net/get/ ...
分类:
Web程序 时间:
2019-03-30 21:33:58
阅读次数:
512
1、给php环境安装redis扩展 2、给电脑安装redis环境 一、使用 phpinfo() 函数查看php对应的版本 二、去下面的两个网站下载对应版本的压缩包并解压(注意:必须下载 nts 版本) https://windows.php.net/downloads/pecl/releases/i ...
致命错误:ext/standard/php_smart_str.h:没有那个文件或目录 参考文章:https://blog.csdn.net/jartins/article/details/80371257。 一、发生背景: 安装php-redis扩展时,打开php官网下载扩展,选择了版本redis ...
分类:
Web程序 时间:
2019-03-14 15:16:45
阅读次数:
826
thinkphp+redis实现秒杀功能 1,安装redis,根据自己的php版本安装对应的redis扩展(此步骤简单的描述一下) 1.1,安装 php_igbinary.dll,php_redis.dll扩展此处需要注意你的php版本如图: 1.2,php.ini文件新增 extension=ph ...
分类:
Web程序 时间:
2019-03-06 01:14:37
阅读次数:
276
1,先在mamp面板中查看php版本:7.1.8 2,~ sunny$cd /Applications/MAMP/bin/php/php7.1.8 3,git clone https://github.com/nicolasff/phpredis.git 4,php7.1.8 sunny$ls bi ...
分类:
其他好文 时间:
2019-03-04 14:18:45
阅读次数:
593
1.查看自己的PHP版本 我本地的版本信息: 2.根据PHP版本号,编译器版本号和CPU架构, 这里的PHP版本为5.5,X86,VC11 编译的,所以,选下面的扩展版本: 选择php_igbinary-1.2.1-5.5-ts-vc11-x86.zip和php_redis-2.2.7-5.5-ts ...