笔者如今公司项目大部分是PHP进行开发,要完成总体微服务化必需要考虑PHP使用上的可行性,Grpc也是支持PHP做为client端发起Grpc请求,可是依赖的扩展等都相对复杂(毕竟不是亲儿子),那么本文就接受怎么使用PHP调用Grpc服务。php
附上:node
喵了个咪的博客:w-blog.cnpython
博文实例demo:GitHub - sunmi-OS/grpc-php-to-golang-demogit
grpc官网:grpc / grpc.iogithub
protobuf代码仓库:Releases · protocolbuffers/protobuf · GitHubgolang
PHP在使用过程当中依赖一下几项内容json
> git clone https://github.com/grpc/grpc.git > cd grpc > git pull --recurse-submodules && git submodule update --init --recursive > make > sudo make install # make install 会在 /usr/local/bin 目录下生成如下文件 #grpc_cpp_plugin #grpc_csharp_plugin #grpc_node_plugin #grpc_objective_c_plugin #grpc_php_plugin #grpc_python_plugin #grpc_ruby_plugin # 或者只变编译grpc_php_plugin > make grpc_php_plugin Package libcares was not found in the pkg-config search path. Perhaps you should add the directory containing `libcares.pc' to the PKG_CONFIG_PATH environment variable No package 'libcares' found [C] Compiling third_party/address_sorting/address_sorting.c [C] Compiling third_party/address_sorting/address_sorting_posix.c [C] Compiling third_party/address_sorting/address_sorting_windows.c [AR] Creating /Users/wenzhenxi/Downloads/grpc/libs/opt/libaddress_sorting.a [HOSTCXX] Compiling src/compiler/cpp_generator.cc [HOSTCXX] Compiling src/compiler/csharp_generator.cc [HOSTCXX] Compiling src/compiler/node_generator.cc [HOSTCXX] Compiling src/compiler/objective_c_generator.cc [HOSTCXX] Compiling src/compiler/php_generator.cc [HOSTCXX] Compiling src/compiler/python_generator.cc [HOSTCXX] Compiling src/compiler/ruby_generator.cc [AR] Creating /Users/wenzhenxi/Downloads/grpc/libs/opt/libgrpc_plugin_support.a [HOSTCXX] Compiling src/compiler/php_plugin.cc Package libcares was not found in the pkg-config search path. Perhaps you should add the directory containing `libcares.pc' to the PKG_CONFIG_PATH environment variable No package 'libcares' found Package libcares was not found in the pkg-config search path. Perhaps you should add the directory containing `libcares.pc' to the PKG_CONFIG_PATH environment variable No package 'libcares' found [HOSTLD] Linking /Users/wenzhenxi/Downloads/grpc/bins/opt/grpc_php_plugin
最终获得了grpc_php_pluginvim
最简单的方式就是直接经过pecl进行安装:windows
pecl install grpc pecl install protobuf
若是没法使用pecl可使用编译的方式进行安装,PHP依赖的源文件已经存放在grpc中:ruby
> cd grpc/src/php/ext/grpc > phpize > ./configure > make > sudo make install > git clone https://github.com/allegro/php-protobuf > phpize > ./configure > make > sudo make install
最后须要在php.ini里面增长以下内容:
extension=grpc.so extension=protobuf.so
经过phpinfo(); 能够正常看到这两个模块正常便可
PS:protobuf能够不经过扩展的方式经过composer引入也可,对效率来讲更加推荐经过SO扩展,demo中已经准备了7.1和7.2版本的so文件
> cd $GOPATH/src/grpc-php-to-golang-demo/protobuf > mkdir -p php-client/helloworld > protoc --proto_path=./ --php_out=php-client/helloworld --grpc_out=php-client/helloworld --plugin=protoc-gen-grpc=../grpc_php_plugin-all/osx-64/grpc_php_plugin helloworld.proto > cd php-client/helloworld/ > ll total 0 drwxr-xr-x 4 wenzhenxi staff 128 2 15 15:09 ./ drwxr-xr-x 3 wenzhenxi staff 96 2 15 15:09 ../ drwxr-xr-x 3 wenzhenxi staff 96 2 15 15:09 GPBMetadata/ drwxr-xr-x 5 wenzhenxi staff 160 2 15 15:09 Helloworld/
拷贝依赖文件:
cd $GOPATH/src/grpc-php-to-golang-demo mkdir -p php cd php mv $GOPATH/src/grpc-php-to-golang-demo/protobuf/php-client/helloworld helloworld
使用composer获取依赖文件:
> vim composer.json { "name": "grpc/grpc-demo", "description": "gRPC example for PHP", "require": { "grpc/grpc": "^v1.3.0" }, "autoload": { "psr-4": { "": "route_guide/" } } } > composer install
编写测试文件:
> vim client.php require 'vendor/autoload.php'; include_once 'helloworld/Helloworld/GreeterClient.php'; include_once 'helloworld/Helloworld/HelloReply.php'; include_once 'helloworld/Helloworld/HelloRequest.php'; include_once 'helloworld/GPBMetadata/Helloworld.php'; function greet($name) { $client = new Helloworld\GreeterClient('localhost:50051', [ 'credentials' => Grpc\ChannelCredentials::createInsecure(), ]); $request = new Helloworld\HelloRequest(); $request->setName($name); list($reply, $status) = $client->SayHello($request)->wait(); $message = $reply->getMessage(); return $message; } $name = !empty($argv[1]) ? $argv[1] : 'world'; echo greet($name)."\n";
结果:
> php client.php holle world