php模拟发送post请求的二种方式

发布时间:2019-11-20编辑:脚本学堂
php模拟发送post请求如何实现,这里介绍二种php模拟post请求的方法,通过fsocket和curl方式模拟发送post数据请求,两个例子供大家学习参考。

php模拟post请求的方法

两种办法:
通过fsocket和curl方式

以下通过例子学习php如何使用这两种方法模拟post请求。

1、php通过fsocket模拟post提交请求
 

复制代码 代码示例:
<?php
function sock_post($url,$query){
$info=parse_url($url);
$fp=fsockopen($info["host"],80,$errno,$errstr,3);
$head="POST ".$info['path']." HTTP/1.0rn";
$head.="Host: ".$info['host']."rn";
$head.="Referer: http://".$info['host'].$info['path']."rn";
$head.="Content-type: application/x-www-form-urlencodedrn";
$head.="Content-Length: ".strlen(trim($query))."rn";
$head.="rn";
$head.=trim($query);
$write=fputs($fp,$head);
while(!feof($fp)){
$line=fgets($fp);
echo $line."<br>";
}
}

使用方法:
(注意$url这个参数必须是域名,不可以是localhost这种形式的url):
 

复制代码 代码示例:
$purl="http://www.jb200.com/post.php";
echo "以下是POST方式的响应内容:<br>";
sock_post($purl,"name=php程序员教程网&url=http://www.jb200.com/");

2、php通过curl模拟post提交请求。
 

复制代码 代码示例:
<?php
$url='http://www.jb200.com/post.php';
$fields=array(
'lname'=>'justcoding',
'fname'=>'phplover',
'title'=>'myapi',
'email'=>'123058949@qq.com',
'phone'=>'13611975347'
);
$ch=curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST,count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS,$fields);
ob_start();
curl_exec($ch);
$result=ob_get_contents();
ob_end_clean();
echo $result;
curl_close($ch);