PHP - http_get 未发送 http_origin
PHP - http_get not sending http_origin
我正在做这样的 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 请求发送这个值?
您可以使用 http_get
的 options 参数设置请求 headers
$response = http_get( "http://www.example.com/test.php",
array(
"timeout"=>1,
"headers"=>array(
"HTTP_ORIGIN" => "http://www.example2.com"
)
),
$info);
我正在做这样的 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 请求发送这个值?
您可以使用 http_get
$response = http_get( "http://www.example.com/test.php",
array(
"timeout"=>1,
"headers"=>array(
"HTTP_ORIGIN" => "http://www.example2.com"
)
),
$info);