前言
在上节已经介绍了GRPC,不了解GRPC的可以先看下。
本文将讲述PHP如何使用GRPC
下载Protoc
上节讲了GPRC使用协议缓冲区,需要使用protoc特殊的 gRPC 插件从您的 proto 文件生成代码。
点击 下载地址 选择对应的平台。
我本机是windows10 x64,对应的下载链接
将下载的压缩包解压,bin文件路径加入到系统环境变量Path中
打开命令行运行
protoc --version
查看protoc版本是否运行成功
编写proto文件
万事开头say hello,下面写一个helloworld.proto。proto3语言指南
// Copyright 2015 gRPC authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
syntax = "proto3";
option java_multiple_files = true;
option java_package = "io.grpc.examples.helloworld";
option java_outer_classname = "HelloWorldProto";
option objc_class_prefix = "HLW";
package helloworld;
// The greeting service definition.
// 定义服务
service Greeter {
// Sends a greeting
// 服务接口
// HelloRequest请求体
// HelloReply 响应体
rpc SayHello (HelloRequest) returns (HelloReply) {
}
}
// The request message containing the user's name.
// 定义请求参数
message HelloRequest {
string name = 1;
}
// The response message containing the greetings
// 定义响应数据
message HelloReply {
string message = 1;
}
打开命令行窗口,使用protoc工具生成客户端代码和服务端代码
protoc --php_out=php ./helloworld.proto
# --php_out : 指定php输出路径
执行以上命令后
会再php文件夹目录下生成以下文件
主要看Helloworld文件夹下的文件
响应类HelloReply.php
namespace Helloworld;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* The response message containing the greetings
*
* Generated from protobuf message <code>helloworld.HelloReply</code>
*/
class HelloReply extends \Google\Protobuf\Internal\Message
{
/**
* protoc文件定义Reply的属性Message
* Generated from protobuf field <code>string message = 1;</code>
*/
protected $message = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $message
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Examples\Protos\Helloworld::initOnce();
parent