如何在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老实说,我不想乱搞卷发,因为这真的不是卷发的工作。我也不想使用http_get,因为我没有PECL扩展。fsockopen会起作用吗?如果是这样,我如何在不读取文件内容的情况下做到这一点?没有别的办法了吗?谢谢大家更新我应该补充说,在第一种情况下,我不想等待脚本返回任何东西。据我理解,file_get_content()将等待页面完全加载,等等?
2 回答
侃侃无极
TA贡献2051条经验 获得超10个赞
// $type must equal 'GET' or 'POST' function curl_request_async($url, $params, $type='POST') { 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); // Data goes in the path for a GET request if('GET' == $type) $parts['path'] .= '?'.$post_string; $out = "$type ".$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"; // Data goes in the request body for a POST request if ('POST' == $type && isset($post_string)) $out.= $post_string; fwrite($fp, $out); fclose($fp); }
白板的微信
TA贡献1883条经验 获得超3个赞
- 2 回答
- 0 关注
- 1005 浏览
添加回答
举报
0/150
提交
取消