我正在做这样的http_get请求......
$response = http_get("http://www.example.com/test.php", array("timeout"=>1), $info);
print_r($info);
但是test.php有$ _SERVER ['HTTP_ORIGIN']请求,所以失败了。有没有办法告诉http_get请求发送此值?
答案 0 :(得分:2)
您可以使用http_get
$response = http_get( "http://www.example.com/test.php",
array(
"timeout"=>1,
"headers"=>array(
"HTTP_ORIGIN" => "http://www.example2.com"
)
),
$info);