我需要在下面的请求标题中发送此Content-Type - application / json。 如何在head的数组中添加Content-Type application / json?
function sendOrder($arField){
$body='{
}';
$head=array("Authorization: ".$data['scheme']." ".$data['token']);
$data=self::getData("https://example.com",$body,$head);
return $data;
}
答案 0 :(得分:0)
用以下内容替换现有行:
$head=array("Authorization: ".$data['scheme']." ".$data['token'], "Content-Type: application/json");
应该只需要做。