php socket请求,PHP SOCKET模拟HTTP请求

这段代码展示了如何使用PHP的socket_create函数发起HTTP请求,支持GET和POST两种方法。通过建立TCP连接,构造HTTP头部信息,发送请求数据,并接收响应内容。返回的是HTTP响应的主体部分。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

function http_request($url, $type = "GET", $post_data = NULL) { $type = strtoupper($type); $http_info = array(); $url2 = parse_url($url); if(($socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)) < 0) { return false; } //set socket timeout socket_set_option($socket, SOL_SOCKET, SO_SNDTIMEO, array("sec"=>1, "usec"=>0)); $url2["path"] = ($url2["path"] == "" ? "/" : $url2["path"]); $url2["port"] = ($url2["port"] == "" ? 80 : $url2["port"]); $host_ip = http_get_host_ip($url2["host"]); if(($result = socket_connect($socket, $host_ip, $url2["port"])) < 0) { socket_close($socket); return false; } $request =  $url2["path"] . ($url2["query"] != "" ? "?" . $url2["query"] : "") . ($url2["fragment"] != "" ? "#" . $url2["fragment"] : ""); if($type == "GET") {//GET method $in = "GET " . $request . " HTTP/1.1\r\n"; $in .= "Accept: */*\r\n"; $in .= "User-Agent: Lowell-Agent\r\n"; $in .= "Host: " . $url2["host"] . "\r\n"; $in .= "Connection: Close\r\n\r\n"; if(!socket_write($socket, $in, strlen($in))) { socket_close($socket); return false; } unset($in); } else if($type == "POST") {//POST method //build post data $needChar = false; foreach($post_data as $key => $val) { $post_data2 .= ($needChar ? "&" : "") . urlencode($key) . "=" . urlencode($val); $needChar = true; } $in = "POST " . $request . " HTTP/1.1\r\n"; $in .= "Accept: */*\r\n"; $in .= "Host: " . $url2["host"] . "\r\n"; $in .= "User-Agent: Lowell-Agent\r\n"; $in .= "Content-type: application/x-www-form-urlencoded\r\n"; $in .= "Content-Length: " . strlen($post_data2) . "\r\n"; $in .= "Connection: Close\r\n\r\n"; $in .= $post_data2 . "\r\n\r\n"; unset($post_data2); if(!@socket_write($socket, $in, strlen($in))) { socket_close($socket); return false; } unset($in); } else {//unknowd method //trigger_error("Unknowd method", E_USER_ERROR); exit; } //process response $out = ""; while($buff = @socket_read($socket, 2048)) { $out .= $buff; } //finish socket socket_close($socket); $pos = strpos($out, "\r\n\r\n"); $head = substr($out, 0, $pos); //http head $status = substr($head, 0, strpos($head, "\r\n")); //http status line $body = substr($out, $pos + 4, strlen($out) - ($pos + 4)); //page body if(preg_match("/^HTTP\/\d\.\d\s([\d]+)\s.*$/", $status, $matches)) { if(intval($matches[1]) / 100 == 2) { return $body; }else{ return false; } }else{ return false; } }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值