我有这个 json 结果
[{"counter":"542"}]
or
[{"counter":"542"},{"counter":"43"}]
我有以下代码
$address = "http://localhost/restauranttheme/syncAndroid/getCounterGenerator4Android.php";
$string = file_get_contents($address);
$json_a = json_decode($string );
但我得到空结果$json_a == null
那么问题是什么?