首页 > 编程 > PHP > 正文

安装PHP扩展yar

2019-11-06 06:08:25
字体:
来源:转载
供稿:网友
YAR 并行RPC框架研究 并行远程过程调用协议https://www.kancloud.cn/digest/xiaoyu-php-qa/128037https://github.com/laruence/yar方法一、yum install php-pear php-devel (安装pecl等php附属)pecl install msgpack You should add "extension=msgpack.so" to php.inipecl install yarYou should add "extension=yar.so" to php.ini方法二、$ git clonehttps://github.com/msgpack/msgpack.git$ cd msgpack/php$ /var/www/php7/bin/phpize$ ./configure --with-php-config=/usr/local/php7/bin/php-config$ make$ make install在php.ini 里添加如下内容.extension=msgpack.so$wget http://pecl.php.net/get/yar-1.1.1.tgz$tar xvzf yar-1.1.1.tgz$/var/www/php5/bin/phpize$./configure --with-php-config=/usr/local/php7/bin/php-config$make & make install然后会生成yar.so文件在php扩展目录里。在php.ini 里添加如下内容.extension=yar.so重启php和nginxphp_info(); 查看是否安装成功!
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表