gRPC(2)- PHP使用gRPC

前言

上节已经介绍了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
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值