這篇文章主要介紹了php7安裝yar擴展的方法,結合實例形式較為詳細的分析了php7安裝yar擴展的具體步驟、相關命令與注意事項,需要的朋友可以參考下
具體如下:
體驗RPC框架Yar需要:
1.組裝二進位打包協定msgpack
2. 裝yar拓展與依賴
一. 安裝二進位打包協定msgpack 1. 安裝PHP拓展套件有很多種方式,當然沒什麼是比pecl更加來得暴力,用這個之前要確認phpize是否存在
find / -name phpize
#
yum install php-devel
pecl install msgpack
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. 下載yarwget http://pecl.php.net/get/yar-2.0.0.tgz
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*
遇到問題:
configure: error: Please reinstall the libcurl distribution - easy.h should be in
yum -y install curl-devel sudo apt-get install libcurl4-gnutls-dev
參考: http://stackoverflow.com/questions/4976971/compiling-php-with-curl-where-is -curl-installed4. 安裝yar
make && make install
5. 複製yar.so 到php 擴充庫下#sudo cp yar.so /usr/lib/php/20151012/yar.so
6. 擴充寫入設定檔
#
service php7.0-fpm restart service nginx restart
以上是php7安裝yar擴充的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!