GET行为比较简单,POST比较复杂一些。这里提供两种方法供选择:

第一:手写代码
第二:利用HttpClient php类库

第一种方法:代码如下:
<?PHP        
    $flag = 0;    
    //要post的数据    
$argv = array(    
     'var1'=>'abc',    
     'var2'=>'你好吗');    
//构造要post的字符串    
foreach ($argv as $key=>$value) {    
     if ($flag!=0) {    
             $params .= "&";    
             $flag = 1;    
     }    
     $params.= $key."="; $params.= urlencode($value);    
     $flag = 1;    
     }    
     $length = strlen($params);    
         //创建socket连接    
     $fp = fsockopen("127.0.0.1",80,$errno,$errstr,10) or exit($errstr."--->".$errno);    
     //构造post请求的头    
     $header = "POST /mobile/try.php HTTP/1.1";    
     $header .= "Host:127.0.0.1";    
     $header .= "Referer:/mobile/sendpost.php";    
     $header .= "Content-Type: application/x-www-form-urlencoded";    
     $header .= "Content-Length: ".$length."";    
     $header .= "Connection: Close";    
     //添加post的字符串    
     $header .= $params."";    
     //发送post的数据    
     fputs($fp,$header);    
     $inheader = 1;    
     while (!feof($fp)) {    
             $line = fgets($fp,1024); //去除请求包的头只显示页面的返回数据    
             if ($inheader && ($line == "\n" || $line == "")) {    
                 $inheader = 0;    
             }    
             if ($inheader == 0) {    
                 echo $line;    
             }    
     }    
fclose($fp);    
?>

第二种方法是:使用httpclient类,代码如下:
$pageContents = HttpClient::quickPost('http://example.com/someForm', array(    
    'name' => 'Some Name',    
    'email' => 'email@example.com'  
));

使用附件的类库,也可以去官方下载最新的类库,官方地址为:http://scripts.incutio.com/httpclient/index.php
附加一些php httpclient的其他几个用法
内文分页: [1] [2]
文章来源: 本站原创 引用(0) 阅读(406)
 
对《PHP模拟POST行为代码总结》有 0 条评论
发表评论
昵称

网址

电邮
打开HTML 打开UBB 表情 打开表情 隐藏 记住我 [注册]