Browse Source

fix json detection

main
ghost 8 months ago
parent
commit
3a5fb2fb2e
  1. 2
      src/Manticore.php

2
src/Manticore.php

@ -277,7 +277,7 @@ class Manticore @@ -277,7 +277,7 @@ class Manticore
case base64_encode((string) base64_decode((string) $value, true)) === $value:
return $type = self::TYPE_BASE_64;
case null !== json_decode((string) $value, null, 2147483647):
case json_encode((string) json_decode((string) $value)) === $value:
return $type = self::TYPE_JSON;
case false !== @simplexml_load_string((string) $value):

Loading…
Cancel
Save