我正在尝试从服务器检索数据,该服务器通常XML
以JSON
.
$header = array(
'http' => array(
'header'=>"Content-type: application/json"
),
);
$response = file_get_contents($query, false, $header);
print_r($response);
这种方法取自这里。目前该程序不返回任何内容。有没有人发现任何潜在的问题?