我有這個JSON結果PHP json_decode返回NULL
[{"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
那麼問題是什麼?
可以請你POST HTTP內容://localhost/restauranttheme/syncAndroid/getCounterGenerator4Android.php – Satya 2013-05-04 06:04:07
你怎麼填充'$ json_a'。使用'print_r'或'var_dump'。 – 2013-05-04 06:04:42
如何做一些錯誤檢查? url的內容是否被加載到'$ string'中? – arkascha 2013-05-04 06:06:12