在PHP post请求中添加xmlhttprequest

时间:2016-10-23 13:33:36

标签: php ajax

我有这个文件,用PHP将POST请求发送到其他服务器内的文件:

// use key 'http' even if you send the request to https://...
$options = array(
    'http' => array(
        'header'  => "Content-type: application/x-www-form-urlencoded\r\n",
        'method'  => 'POST',
        'content' => http_build_query($data)
    )
);

$context  = stream_context_create($options);
$result = file_get_contents($url, false, $context);

我请求的文件检查HTTP_X_REQUESTED_WITH是否等于xmlhttprequest。 (这样做是因为该文件发送的大多数请求都是通过ajax)

那么如何在我的PHP代码中添加这种东西呢?要发送此参数吗?

1 个答案:

答案 0 :(得分:2)

您可以将X_Requested_With标头添加到http数组的标头中,如下所示:

'header'  => "Content-type: application/x-www-form-urlencoded\r\n" .
             "X-Requested-With: xmlhttprequest\r\n",