gpt4 book ai didi

php7安装yar扩展的方法详解

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章php7安装yar扩展的方法详解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文实例讲述了php7安装yar扩展的方法。分享给大家供大家参考,具体如下:

体验RPC框架Yar需要:

1. 装二进制打包协议msgpack 。

2. 装yar拓展和依赖 。

一. 安装二进制打包协议msgpack 。

1. 安装PHP拓展包有很多种方式,当然没什么是比pecl更加来得暴力,用这个之前要确认phpize是否存在 。

?
1
find / -name phpize

2. 如果phpize不存在 。

?
1
yum install php-devel

3. Ok,先装msgpack 。

?
1
pecl install msgpack

安装跳了一大堆编译过程过程,省略ING 只关心后几行 。

?
1
2
3
4
5
6
Build process completed successfully
Installing '/usr/include/php/ext/msgpack/php_msgpack.h'
Installing '/usr/lib64/php/modules/msgpack.so'
install ok: channel: //pecl .php.net /msgpack-0 .5.6
configuration option "php_ini" is not set to php.ini location
You should add "extension=msgpack.so" to php.ini

安装完 msgpack.so 会自动复制到 php 扩展库,并写好配置.

二. 安装 yar 。

1. 下载 yar 。

?
1
wget http: //pecl .php.net /get/yar-2 .0.0.tgz

2. 解压编译 。

?
1
2
3
4
tar -zxvf yar-2.0.0.tgz
cd cd yar-2.0.0
/usr/bin/phpize
. /configure --with-php-config= /usr/bin/php-config7 .0*

遇到问题:

checking for cURL in default path... not found configure: error: Please reinstall the libcurl distribution - easy.h should be in <curl-dir>/include/curl/ 。

3. 安装 curl-devel 。

?
1
2
yum -y install curl-devel
sudo apt-get install libcurl4-gnutls-dev

ps:curl vs curl-deval 。

参考: http://stackoverflow.com/questions/4976971/compiling-php-with-curl-where-is-curl-installed 。

4. 安装 yar 。

?
1
make && make install

5. 复制 yar.so 到 php 扩展库下 。

?
1
sudo cp yar.so /usr/lib/php/20151012/yar .so

6. 扩展写配置文件 。

?
1
2
3
echo "extension=yar.so" > /etc/php/7 .0 /mods-available/yar .ini
ln -sf /etc/php/7 .0 /mods-available/yar .ini /etc/php/7 .0 /fpm/conf .d /20-yar .ini
ln -sf /etc/php/7 .0 /mods-available/yar .ini /etc/php/7 .0 /cli/conf .d /20-yar .ini

7. 重启 php-fpm nginx 。

?
1
2
service php7.0-fpm restart
service nginx restart

ps: php -ir 查询 phpinfo 。

希望本文所述对大家PHP程序设计有所帮助.

最后此篇关于php7安装yar扩展的方法详解的文章就讲到这里了,如果你想了解更多关于php7安装yar扩展的方法详解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com