mirror of
https://github.com/kvazar-network/index-php.git
synced 2025-01-22 04:45:13 +00:00
fix json detection
This commit is contained in:
parent
87ba47a717
commit
3a5fb2fb2e
@ -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…
x
Reference in New Issue
Block a user