Json Data有哪些记录?

时间:2012-05-11 07:19:24

标签: php json

是否有函数可以找出正在解码的记录数

 $doctors=  json_decode(file_get_contents($url_containing_doctors_list),true);

所以我必须写一个for循环,然后增加Count变量的计数器?

1 个答案:

答案 0 :(得分:2)

您可以使用count($docters)确定$ doctors数组的长度。 json函数不返回它已反序列化的记录数。