php发送post请求的三种方法


Posted in PHP onFebruary 11, 2014

方法一:

/**
 * 发送post请求
 * @param string $url 请求地址
 * @param array $post_data post键值对数据
 * @return string
 */
function send_post($url, $post_data) {

  $postdata = http_build_query($post_data);
  $options = array(
    'http' => array(
      'method' => 'POST',
      'header' => 'Content-type:application/x-www-form-urlencoded',
      'content' => $postdata,
      'timeout' => 15 * 60 // 超时时间(单位:s)
    )
  );
  $context = stream_context_create($options);
  $result = file_get_contents($url, false, $context);

  return $result;
}

//使用方法
$post_data = array(
  'username' => 'stclair2201',
  'password' => 'handan'
);
send_post('https://3water.com', $post_data);

方法二:Socket版本

<?php
/**
 * Socket版本
 * 使用方法:
 * $post_string = "app=socket&version=beta";
 * request_by_socket('chajia8.com', '/restServer.php', $post_string);
 */
function request_by_socket($remote_server,$remote_path,$post_string,$port = 80,$timeout = 30) {
  $socket = fsockopen($remote_server, $port, $errno, $errstr, $timeout);
  if (!$socket) die("$errstr($errno)");
  fwrite($socket, "POST $remote_path HTTP/1.0");
  fwrite($socket, "User-Agent: Socket Example");
  fwrite($socket, "HOST: $remote_server");
  fwrite($socket, "Content-type: application/x-www-form-urlencoded");
  fwrite($socket, "Content-length: " . (strlen($post_string) + 8) . "");
  fwrite($socket, "Accept:*/*");
  fwrite($socket, "");
  fwrite($socket, "mypost=$post_string");
  fwrite($socket, "");
  $header = "";
  while ($str = trim(fgets($socket, 4096))) {
    $header .= $str;
  }

  $data = "";
  while (!feof($socket)) {
    $data .= fgets($socket, 4096);
  }

  return $data;
}
?>

方法三:Curl版本

<?php
/**
 * Curl版本
 * 使用方法:
 * $post_string = "app=request&version=beta";
 * request_by_curl('https://3water.com/restServer.php', $post_string);
 */
function request_by_curl($remote_server, $post_string) {
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $remote_server);
  curl_setopt($ch, CURLOPT_POSTFIELDS, 'mypost=' . $post_string);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_USERAGENT, "3water.com's CURL Example beta");
  $data = curl_exec($ch);
  curl_close($ch);

  return $data;
}
?>

下面是其他网友的方法:

class Request{
  public static function post($url, $post_data = '', $timeout = 5){//curl
    $ch = curl_init();
    curl_setopt ($ch, CURLOPT_URL, $url);
    curl_setopt ($ch, CURLOPT_POST, 1);
    if($post_data != ''){
      curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
    }
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
    curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
    curl_setopt($ch, CURLOPT_HEADER, false);
    $file_contents = curl_exec($ch);
    curl_close($ch);
    return $file_contents;
  }
  public static function post2($url, $data){//file_get_content
    
    $postdata = http_build_query(
      $data
    );
    
    $opts = array('http' =>
           array(
             'method' => 'POST',
             'header' => 'Content-type: application/x-www-form-urlencoded',
             'content' => $postdata
           )
    );
    
    $context = stream_context_create($opts);
    $result = file_get_contents($url, false, $context);
    return $result;
  }
  public static function post3($host,$path,$query,$others=''){//fsocket
    $post="POST $path HTTP/1.1\r\nHost: $host\r\n";
    $post.="Content-type: application/x-www-form-";
    $post.="urlencoded\r\n${others}";
    $post.="User-Agent: Mozilla 4.0\r\nContent-length: ";
    $post.=strlen($query)."\r\nConnection: close\r\n\r\n$query";
    $h=fsockopen($host,80);
    fwrite($h,$post);
    for($a=0,$r='';!$a;){
        $b=fread($h,8192);
        $r.=$b;
        $a=(($b=='')?1:0);
      }
    fclose($h);
    return $r;
  }
}

大家可以根据需要选择适合自己的即可。

PHP 相关文章推荐
对Session和Cookie的区分与解释
Mar 16 PHP
php 高效率写法 推荐
Feb 21 PHP
超级好用的一个php上传图片类(随机名,缩略图,加水印)
Jun 30 PHP
php排序算法(冒泡排序,快速排序)
Oct 09 PHP
php curl选项列表(超详细)
Jul 01 PHP
php提示Warning:mysql_fetch_array() expects的解决方法
Dec 16 PHP
Laravel 5 框架入门(二)构建 Pages 的管理功能
Apr 09 PHP
试用php中oci8扩展
Jun 18 PHP
实例讲解YII2中多表关联的使用方法
Jul 21 PHP
php 读写json文件及修改json的方法
Mar 07 PHP
php查看一个变量的占用内存的实例代码
Mar 29 PHP
TP5框架model常见操作示例小结【增删改查、聚合、时间戳、软删除等】
Apr 05 PHP
codeigniter教程之多文件上传使用示例
Feb 11 #PHP
php创建sprite
Feb 11 #PHP
PHP循环结构实例讲解
Feb 10 #PHP
更改localhost为其他名字的方法
Feb 10 #PHP
php 获取SWF动画截图示例代码
Feb 10 #PHP
php导入csv文件碰到乱码问题的解决方法
Feb 10 #PHP
php判断正常访问和外部访问的示例
Feb 10 #PHP
You might like
使用淘宝IP库获取用户ip地理位置
2013/10/27 PHP
form表单传递数组数据、php脚本接收的实例
2017/02/09 PHP
PHP分页显示的方法分析【附PHP通用分页类】
2018/05/10 PHP
laravel框架如何设置公共头和公共尾
2019/10/22 PHP
利用js获取服务器时间的两个简单方法
2010/01/08 Javascript
jQuery制作仿腾讯web qq用户体验桌面
2013/08/20 Javascript
jquery.cookie() 方法的使用(读取、写入、删除)
2013/12/05 Javascript
jQuery中:first-child选择器用法实例
2014/12/31 Javascript
JavaScript调用浏览器打印功能实例分析
2015/07/17 Javascript
Angular中$compile源码分析
2016/01/28 Javascript
jQuery Jsonp跨域模拟搜索引擎
2017/06/17 jQuery
老生常谈js中的MVC
2017/07/25 Javascript
ng-events类似ionic中Events的angular全局事件
2018/09/05 Javascript
深入理解 Koa 框架中间件原理
2018/10/18 Javascript
微信小程序 弹窗输入组件的实现解析
2019/08/12 Javascript
关于vue路由缓存清除在main.js中的设置
2019/11/06 Javascript
python去除空格和换行符的实现方法(推荐)
2017/01/04 Python
python实现解数独程序代码
2017/04/12 Python
Python使用正则表达式实现文本替换的方法
2017/04/18 Python
django 2.0更新的10条注意事项总结
2018/01/05 Python
利用python实现微信头像加红色数字功能
2018/03/26 Python
Python利用神经网络解决非线性回归问题实例详解
2019/07/19 Python
基于Python安装pyecharts所遇的问题及解决方法
2019/08/12 Python
tensorflow实现打印ckpt模型保存下的变量名称及变量值
2020/01/04 Python
python中pivot()函数基础知识点
2021/01/03 Python
pytorch Dataset,DataLoader产生自定义的训练数据案例
2021/03/03 Python
详解CSS3+JS完美实现放大镜模式
2020/12/03 HTML / CSS
canvas实现扭蛋机动画效果的示例代码
2018/10/17 HTML / CSS
英国在线潜水商店:Simply Scuba
2019/03/25 全球购物
端口镜像是怎么实现的
2014/03/25 面试题
办理护照介绍信
2014/01/16 职场文书
先进个人事迹材料
2014/01/25 职场文书
学校四群教育实施方案
2014/06/12 职场文书
学生会竞选演讲稿学习部
2014/08/25 职场文书
redis配置文件中常用配置详解
2021/04/14 Redis
Win10 和 Win11可以共存吗? win10/11产品生命周期/服务更新介绍
2021/11/21 数码科技