如何在PHP中发出异步GET请求?

我希望对其他服务器上的另一个脚本进行简单的GET请求。我该怎么做呢?

在一种情况下,我只需要请求一个外部脚本,而无需任何输出。

make_request('http://www.externalsite.com/script1.php?variable=45'); //example usage

在第二种情况下,我需要获取文本输出。

$output = make_request('http://www.externalsite.com/script2.php?variable=45');

echo $output; //string output

老实说,我不想弄乱CURL,因为这实际上不是CURL的工作。我也不想使用http_get,因为我没有PECL扩展名。

fsockopen可以工作吗?如果是这样,该如何在不读取文件内容的情况下执行此操作?有没有其他办法?

谢谢大家

回答:

我应该补充,在第一种情况下,我不想等待脚本返回任何内容。据我了解,file_get_contents()将等待页面完全加载等?

回答:

file_get_contents 会做你想要的

$output = file_get_contents('http://www.example.com/');

echo $output;

编辑:一种触发GET请求并立即返回的方法。

引用自http://petewarden.typepad.com/searchbrowser/2008/06/how-to-post-

an.html

function curl_post_async($url, $params)

{

foreach ($params as $key => &$val) {

if (is_array($val)) $val = implode(',', $val);

$post_params[] = $key.'='.urlencode($val);

}

$post_string = implode('&', $post_params);

$parts=parse_url($url);

$fp = fsockopen($parts['host'],

isset($parts['port'])?$parts['port']:80,

$errno, $errstr, 30);

$out = "POST ".$parts['path']." HTTP/1.1\r\n";

$out.= "Host: ".$parts['host']."\r\n";

$out.= "Content-Type: application/x-www-form-urlencoded\r\n";

$out.= "Content-Length: ".strlen($post_string)."\r\n";

$out.= "Connection: Close\r\n\r\n";

if (isset($post_string)) $out.= $post_string;

fwrite($fp, $out);

fclose($fp);

}

这是打开一个套接字,触发一个get请求,然后立即关闭该套接字并返回。

以上是 如何在PHP中发出异步GET请求? 的全部内容, 来源链接: utcz.com/qa/399852.html

回到顶部