var_dump () не работает на экземплярах классов gRPC Protobuf - PullRequest
0 голосов
/ 14 марта 2019

Вот мой файл .proto:

message HelloReply {
  string message = 1;
}

Вот вывод php из протокольного прогона с grpc_php_plugin:

<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: helloworld.proto

namespace Helloworld;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;

    /**
 * The request message containing the user's name.
 *
 * Generated from protobuf message <code>helloworld.HelloRequest</code>
 */
class HelloRequest extends \Google\Protobuf\Internal\Message
{
    /**
     * Generated from protobuf field <code>string name = 1;</code>
     */

    private $name = '';

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $name
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Helloworld::initOnce();
        parent::__construct($data);
    }

    /**
     * Generated from protobuf field <code>string name = 1;</code>
     * @return string
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * Generated from protobuf field <code>string name = 1;</code>
     * @param string $var
     * @return $this
     */
    public function setName($var)
    {
        GPBUtil::checkString($var, True);
        $this->name = $var;

        return $this;
    }

}

Вот фрагмент из моего кода:

$name="test_name";
$request = new Helloworld\HelloRequest(array("name"=>$name));
echo "Name is " . $request->getName() . "\n";
var_dump($request);

Вот вывод:

Name is test_name
object(Helloworld\HelloRequest)#3 (0) {
}

Почему var_dump не дает мне значение «name», которое хранится в объекте «HelloRequest»? Как вывести все свойства и их значения для экземпляра класса, сгенерированного gRPC? Что является причиной того, что свойства экземпляров классов, расширяющих gRPC «Сообщение», должны быть скрыты?

Я пробовал приведение типа:

$strvar = (string) $request;

вызывает следующую ошибку:

PHP Recoverable fatal error:  Object of class Helloworld\HelloRequest could not be converted to string in /home/........./php/greeter_client.php on line 42

1 Ответ

1 голос
/ 15 марта 2019

Обходной путь может быть var_dump($request->serializeToJsonString())

https://github.com/protocolbuffers/protobuf/blob/master/php/src/Google/Protobuf/Internal/Message.php#L1489

...