0

我有以下 json 模式

{"property":[{"id":"1","name":"Property 1"},{"id":"2","name":"Property 2"}]}

我如何验证 json 架构?提前致谢。

4

1 回答 1

1

用于json_decode($string);将 JSON 字符串转换为原生 PHP。如果NULL返回,则无法解码字符串。然后您可以使用json_last_error()获取错误代码,这可能会有所帮助。

http://www.php.net/manual/en/function.json-decode.php

http://www.php.net/manual/en/function.json-last-error.php

于 2013-10-16T13:38:26.770 回答