标签: php json
是否有函数可以找出正在解码的记录数
$doctors= json_decode(file_get_contents($url_containing_doctors_list),true);
所以我必须写一个for循环,然后增加Count变量的计数器?
答案 0 :(得分:2)
您可以使用count($docters)确定$ doctors数组的长度。 json函数不返回它已反序列化的记录数。
count($docters)