php安裝grpc擴充功能的方法:先在php.ini檔案中加入grpc擴充配置;然後安裝protobuf及其php擴充;最後重啟php-fpm即可。
本文操作環境:CentOS Linux release 7.6.1810系統、PHP7.1版,Dell G3電腦
#php怎麼安裝grpc擴充?
PHP71 安裝Google gRPC擴充功能
「開啟」 gRPC 的步驟
安裝gRPC 及其php 擴充功能
git clone -b $(curl -L https://grpc.io/release) https://github.com/grpc/grpc cd grpc git submodule update --init make make install cd src/php/ext/grpc phpize ./configure --with-php-config=/usr/local/php/bin/php-config make make install vi /usr/local/php/etc/php.ini
在php.ini 檔案中新增grpc 擴充配置:extension=grpc.so
安裝protobuf 及其php 擴充功能
cd ../../../../third_party/protobuf ./autogen.sh ./configure make make install cd php/ext/google/protobuf phpize ./configure --with-php-config=/usr/local/php/bin/php-config make make install vi /usr/local/php/etc/php.ini
在php.ini 檔案中新增protobuf 擴充配置:extension=protobuf .so
重啟php-fpm
推薦學習:《PHP影片教學》
以上是php怎麼安裝grpc擴展的詳細內容。更多資訊請關注PHP中文網其他相關文章!