Skip to content

Instantly share code, notes, and snippets.

@filippotoso
Last active February 21, 2019 08:34
Show Gist options
  • Save filippotoso/2a8aa601b17be6b4242f65b90cb1ffd7 to your computer and use it in GitHub Desktop.
Save filippotoso/2a8aa601b17be6b4242f65b90cb1ffd7 to your computer and use it in GitHub Desktop.
Google\Protobuf\Struct to PHP Array
<?php
use Google\Protobuf\Struct;
function struct2array(Struct $struct) {
return json_decode($struct->serializeToJsonString(), true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment