我有以下 json 模式
{"property":[{"id":"1","name":"Property 1"},{"id":"2","name":"Property 2"}]}
我如何验证 json 架构?提前致谢。
我有以下 json 模式
{"property":[{"id":"1","name":"Property 1"},{"id":"2","name":"Property 2"}]}
我如何验证 json 架构?提前致谢。
用于json_decode($string);
将 JSON 字符串转换为原生 PHP。如果NULL
返回,则无法解码字符串。然后您可以使用json_last_error()
获取错误代码,这可能会有所帮助。