作者:激越工作室 | 来源:互联网 | 2023-10-10 20:44
本次编译PHP7扩展,以memcached为例1.进入http:pecl.php.netPHP的扩展库2.搜索memcached复制stable版源码链接3.下载到服务器并解压4.
本次编译PHP7扩展,以 memcached 为例
1.进入 http://pecl.php.net PHP的扩展库
2.搜索 memcached 复制 stable版 源码链接
3.下载到服务器并解压
4.使用 phpize 创建 configure 文件
5.生成 Makefile 并 编译安装
6.把生成的 .so 扩展,在 php.ini 里引入
7.重启 PHP 或 重启 Apache
wget https://pecl.php.net/get/memcached-3.0.3.tgz
tar xzf memcached-3.0.3.tgz
cd memcached-3.0.3
/path/php/bin/phpize #path 为 PHP路径
./configure --with-php-cOnfig=/path/php/bin/php-config
提示缺少 libmemcached
wget https://launchpad.net/libmemcached/1.0/1.0.18/+download/libmemcached-1.0.18.tar.gz
tar xzf libmemcached-1.0.18
cd libmemcached-1.0.18
./configure --prefix=/usr/local/libmemcached
make && make install
cd memcached-3.0.3
./configure --with-php-cOnfig=/usr/local/php7/bin/php-config --with-libmemcached-dir=/usr/local/libmemcached
继续报错
./configure --with-php-cOnfig=/usr/local/php7/bin/php-config --with-libmemcached-dir=/usr/local/libmemcached --disable-memcached-sasl
make && make install
vim php.ini
加入: extension=memcached.so #或填绝对路径
重启PHP
pkill -9 php
/usr/local/php7/sbin/php-fpm
查看 phpinfo 页面,就可以看到 memcached 扩展成功安装了
编译安装时,缺啥补啥就行
参考链接:
http://www.lnmp.cn/install-memcache-and-memcached-extends-under-php7.html
http://www.cnblogs.com/linuxboke/p/5492272.html