php使用socket post数据到其它web服务器的方法

 更新时间:2015年06月02日 10:29:09   作者:不吃皮蛋  
这篇文章主要介绍了php使用socket post数据到其它web服务器的方法,涉及php使用socket传输数据的相关技巧,需要的朋友可以参考下

本文实例讲述了php使用socket post数据到其它web服务器的方法。分享给大家供大家参考。具体实现方法如下:

function post_request($url, $data, $referer='') {
  // Convert the data array into URL Parameters like a=b&foo=bar etc.
  $data = http_build_query($data);
  // parse the given URL
  $url = parse_url($url);
  if ($url['scheme'] != 'http') { 
    die('Error: Only HTTP request are supported !');
  }
  // extract host and path:
  $host = $url['host'];
  $path = $url['path'];
  // open a socket connection on port 80 - timeout: 30 sec
  $fp = fsockopen($host, 80, $errno, $errstr, 30);
  if ($fp){
    // send the request headers:
    fputs($fp, "POST $path HTTP/1.1\r\n");
    fputs($fp, "Host: $host\r\n");
    if ($referer != '')
      fputs($fp, "Referer: $referer\r\n");
    fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
    fputs($fp, "Content-length: ". strlen($data) ."\r\n");
    fputs($fp, "Connection: close\r\n\r\n");
    fputs($fp, $data);
    $result = ''; 
    while(!feof($fp)) {
      // receive the results of the request
      $result .= fgets($fp, 128);
    }
  }
  else { 
    return array(
      'status' => 'err', 
      'error' => "$errstr ($errno)"
    );
  }
  // close the socket connection:
  fclose($fp);
  // split the result header from the content
  $result = explode("\r\n\r\n", $result, 2);
  $header = isset($result[0]) ? $result[0] : '';
  $content = isset($result[1]) ? $result[1] : '';
  // return as structured array:
  return array(
    'status' => 'ok',
    'header' => $header,
    'content' => $content
  );
}
//使用方法
// Submit those variables to the server
$post_data = array(
  'test' => 'foobar',
  'okay' => 'yes',
  'number' => 2
);
// Send a request to example.com 
$result = post_request('http://www.example.com/', $post_data);
if ($result['status'] == 'ok'){
  // Print headers 
  echo $result['header']; 
  echo '<hr />';
  // print the result of the whole request:
  echo $result['content'];
}
else {
  echo 'A error occured: ' . $result['error']; 
}

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

相关文章

  • 详解PHP接口签名验证

    详解PHP接口签名验证

    工作中,我们时刻都会和接口打交道,有的是调取他人的接口,有的是为他人提供接口,在这过程中肯定都离不开签名验证。本文将详细介绍PHP接口签名验证。
    2021-06-06
  • php7 图形用户界面GUI 开发示例

    php7 图形用户界面GUI 开发示例

    这篇文章主要介绍了php7 图形用户界面GUI 开发,结合实例形式分析了PHP7基于php_ui扩展实现的图形用户界面GUI相关操作技巧,需要的朋友可以参考下
    2020-02-02
  • 简单概括PHP的字符串中单引号与双引号的区别

    简单概括PHP的字符串中单引号与双引号的区别

    这篇文章主要介绍了PHP的字符串中单引号与双引号的区别,是PHP入门学习中的基础知识,需要的朋友可以参考下
    2016-05-05
  • PHP中将一个字符串部分字符用星号*替代隐藏的实现代码

    PHP中将一个字符串部分字符用星号*替代隐藏的实现代码

    这篇文章主要介绍了PHP中将一个字符串部分字符用星号*替代隐藏的实现代码,有时候我们需要将部分内容隐藏那么就可能需要下面的代码了,需要的朋友可以参考下
    2019-09-09
  • PHP 函数学习简单小结

    PHP 函数学习简单小结

    下面是一些php下经常用的函数,都是些必须要知道的函数,只有知道有个函数与功能,才可能组装成完整的功能强大的系统。
    2010-07-07
  • 详解php用static方法的原因

    详解php用static方法的原因

    这篇文章给大家分享了关于在PHP中使用static方法的原因以及相关实例代码,有需要的朋友们参考下。
    2018-09-09
  • phpmailer发送gmail邮件实例详解

    phpmailer发送gmail邮件实例详解

    本篇文章是对phpmailer发送gmail邮件实例进行了详细的分析介绍,需要的朋友参考下
    2013-06-06
  • ezSQL PHP数据库操作类库

    ezSQL PHP数据库操作类库

    WordPress 使用的数据库操作类就是它 -- ezSQL 我用了好多年了,我特别喜欢它的几个类方法,可以有效提高代码简洁度。
    2010-05-05
  • php $_SESSION会员登录实例分享

    php $_SESSION会员登录实例分享

    这篇文章主要为大家详细介绍了php $_SESSION会员登录实例,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-03-03
  • 详解php反序列化之字符逃逸法

    详解php反序列化之字符逃逸法

    这篇文章主要为大家详细介绍了php反序列化之字符逃逸法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助
    2022-03-03

最新评论