fix json_decode call parameters (#4381)

pull/2295/head
urfinjuezz 7 years ago committed by Paul Yang
parent 13e627ad69
commit d7d863ea07
  1. 2
      php/src/Google/Protobuf/Internal/Message.php

@ -1104,7 +1104,7 @@ class Message
*/
public function parseFromJsonStream($input)
{
$array = json_decode($input->getData(), JSON_BIGINT_AS_STRING);
$array = json_decode($input->getData(), true, 512, JSON_BIGINT_AS_STRING);
if (is_null($array)) {
throw new GPBDecodeException(
"Cannot decode json string.");

Loading…
Cancel
Save