如何判断json数组是否为空?
如何使用 PHP 判断 json 数组是否为空? 空($jsonarray)似乎不起作用!
How to find whether a json array is empty or not using PHP?
empty($jsonarray) seems doesn't work!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
假设您已经解码了 JSON,是的,确实如此。
给出:
Assuming you have decoded the JSON, yes it does.
gives:
试试这个
Try this
空 JSON 数组的值只是 [],因此您可以在数组名称之后或在打印数组时在字符串中搜索它。
The empty JSON array's value is simply [], so you can search for it after the name of the array or in the string if you prints out an array.