PHP模拟http请求的方法详解


Posted in PHP onNovember 09, 2016

本文实例讲述了PHP模拟http请求的方法。分享给大家供大家参考,具体如下:

方法一:利用php的socket编程来直接给接口发送数据来模拟post的操作。

建立两个文件post.php,getpost.php

post.php内容如下:

<?php
 $flag = 0;
 $params = '';
 $errno = '';
 $errstr = '';
 //要post的数据
$argv = array(
  'var1'=>'abc',
  'var2'=>'how are you , my friend??');
//构造要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("localhost",81,$errno,$errstr,10) or exit($errstr."--->".$errno);
  //构造post请求的头
  $header = "POST /flandy/getpost.php HTTP/1.1\r\n";
  $header .= "Host:127.0.0.1\r\n";
  $header .= "Referer:/flandy/post.php\r\n";
  $header .= "Content-Type: application/x-www-form-urlencoded\r\n";
  $header .= "Content-Length: ".$length."\r\n";
  $header .= "Connection: Close\r\n\r\n";
  //添加post的字符串
  $header .= $params."\r\n";
  //发送post的数据
  fputs($fp,$header);
  $inheader = 1;
  while (!feof($fp)) {
    $line = fgets($fp,1024); //去除请求包的头只显示页面的返回数据
    if ($inheader && ($line == "\n" || $line == "\r\n")) {
       $inheader = 0;
    }
    if ($inheader == 0) {
     echo $line;
    }
  }
fclose($fp);
?>

getpost.php的内容如下:

<?php
echo "this is the data posted";
echo "<pre>";
print_r($_REQUEST);
echo "</pre>";
?>

结果输出:

this is the data posted
Array
(
  [var1] => abc
  [var2] => how are you , my friend??
)

以上代码在本机81端口下已经通过测试。

方法二:使用PHP的curl扩展或HttpClient.class.php类,这两个非常类似,下面简单的列出curl的实现代码。

两个文件post2.php和getpost2.php

post2.php的内容如下:

<?php
$psecode = 'NDE005';
$website = 'www.baidu.com';
$amt = 1;
$pwd = 123456;
$ch = curl_init();
$curl_url = "http://localhost:81/flandy/getpost2.php?web=" . $website .
"&pwd=" . $pwd . "&action=check&pseid=" . $psecode .
"&amt=" . $amt;
curl_setopt($ch, CURLOPT_URL, $curl_url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//不直接输出,返回到变量
$curl_result = curl_exec($ch);
$result = explode(',', $curl_result);
curl_close($ch);
print_r($result);
?>

getpost2.php的内容如下:

<?php
echo "returndata<br>";
echo "<pre>";
print_r($_REQUEST);
echo "</pre>";
?>

结果输出:

Array ( [0] => returndata
Array
(
  [web] => 'wwwbaiducom'
  [pwd] => 123456
  [action] => check
  [pseid] => 'NDE005'
  [amt] => 1
)
)

方法三:这个要借助第三方类库HttpClient

可以到这里下载:http://scripts.incutio.com/httpclient/

或者点击此处本站下载

<?php
require_once 'HttpClient.class.php';
$params = array('web' => 'www.baidu.com',
'pwd' => '123456',
'action' => 'check',
'pseid' => 'NDE005',
'amt' => 1);
$pageContents = HttpClient::quickPost('http://localhost:81/flandy/getpost3.php', $params);
$result = explode(',', $pageContents);
print_r($result);
?>

希望本文所述对大家PHP程序设计有所帮助。

PHP 相关文章推荐
使用Apache的rewrite技术
Jun 22 PHP
使用 eAccelerator加速PHP代码的方法
Sep 30 PHP
在PHP中使用Sockets 从Usenet中获取文件
Jan 10 PHP
PHP中全面阻止SQL注入式攻击分析小结
Jan 30 PHP
基于PHP文件操作的详细诠释
Jun 21 PHP
php中try catch捕获异常实例详解
Nov 21 PHP
php_imagick实现图片剪切、旋转、锐化、减色或增加特效的方法
Dec 15 PHP
php在数组中查找指定值的方法
Mar 17 PHP
php版微信公众号接口实现发红包的方法
Oct 14 PHP
PHP操作Redis常用技巧总结
Apr 24 PHP
在Laravel中使用DataTables插件的方法
May 29 PHP
PHP 中 var_export、print_r、var_dump 调试中的区别
Jun 19 PHP
Linux平台PHP5.4设置FPM线程数量的方法
Nov 09 #PHP
浅析php-fpm静态和动态执行方式的比较
Nov 09 #PHP
PHP带节点操作的无限分类实现方法详解
Nov 09 #PHP
thinkPHP批量删除的实现方法分析
Nov 09 #PHP
基于jQueryUI和Corethink实现百度的搜索提示功能
Nov 09 #PHP
php 计算两个时间相差的天数、小时数、分钟数、秒数详解及实例代码
Nov 09 #PHP
php mysql procedure实现获取多个结果集的方法【基于thinkPHP】
Nov 09 #PHP
You might like
1982年日本摄影师镜头下的中国孩子 那无忧无虑的童年
2020/03/12 杂记
十天学会php之第七天
2006/10/09 PHP
PHP字符串的递增和递减示例介绍
2014/02/11 PHP
PHP实现AES256加密算法实例
2014/09/22 PHP
php+xml结合Ajax实现点赞功能完整实例
2015/01/30 PHP
PHP5多态性与动态绑定介绍
2015/04/03 PHP
php版微信小店API二次开发及使用示例
2016/11/12 PHP
PHP实现的获取文件mimes类型工具类示例
2018/04/08 PHP
PHP超全局变量实现原理及代码解析
2020/09/01 PHP
javascript编程起步(第七课)
2007/02/27 Javascript
某人初学javascript的时候写的学习笔记
2010/12/30 Javascript
Jquery弹出窗口插件 LeanModal的使用方法
2012/03/10 Javascript
jQuery实现跨域iframe接口方法调用
2015/03/14 Javascript
jquery插件jSignature实现手动签名
2015/05/04 Javascript
JavaScript中的substr()方法使用详解
2015/06/06 Javascript
js只执行1次的函数示例
2016/07/20 Javascript
javascript 通过键名获取键盘的keyCode方法
2017/12/31 Javascript
jQuery实现表单动态加减、ajax表单提交功能
2018/06/08 jQuery
使用vue点击li,获取当前点击li父辈元素的属性值方法
2018/09/12 Javascript
vue-quill-editor+plupload富文本编辑器实例详解
2018/10/19 Javascript
5个你不知道的JavaScript字符串处理库(小结)
2020/06/01 Javascript
python二分法实现实例
2013/11/21 Python
python通过zlib实现压缩与解压字符串的方法
2014/11/19 Python
Python实现两款计算器功能示例
2017/12/19 Python
Django contenttypes 框架详解(小结)
2018/08/13 Python
PyTorch 1.0 正式版已经发布了
2018/12/13 Python
python与字符编码问题
2019/05/24 Python
Python PyQt5整理介绍
2020/04/01 Python
Tensorflow实现将标签变为one-hot形式
2020/05/22 Python
Python之Matplotlib文字与注释的使用方法
2020/06/18 Python
Visual Studio code 配置Python开发环境
2020/09/11 Python
Html5+JS实现手机摇一摇功能
2015/04/24 HTML / CSS
英国综合网上购物商城:The Hut
2018/07/03 全球购物
法学毕业生自我鉴定
2013/11/08 职场文书
教师业务学习材料
2014/12/16 职场文书
Mysql 如何合理地统计一个数据库里的所有表的数据量
2022/04/18 MySQL