0
我是json和web服務的新成員。使用INSERT命令後,我做的print_r($結果),並得到了這樣的數據:從PHP的Web服務解析Json
Array ([error_code] => 0 [error_desc] => [result] => Array ([error_code] => 999 [error_desc] => Format input 'date' is wrong))
我想打印error_desc僅是表明格式輸入「日期」是錯誤。
我嘗試用PHP解析它,但我只得到空的結果。這裏是我的代碼:
if (is_array($result)) {
if ($result['error_code'] =='999') {
echo $result['error_desc'];
}
}
請幫忙。謝謝。