php如何post XML到指定服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php如何post XML到指定服务器相关的知识,希望对你有一定的参考价值。

参考技术A 以下是一个编写好的post XML 的类:

<?php

class xmlSender 
  
   /**
    * 构造器
    * 校验 cURL 是不是可用
    */
   function xmlSender()
   
      if ( !extension_loaded('curl') ) 
         trigger_error("You need cURL loaded to use this class", E_USER_ERROR);
      
   
  
   /**
    * 使用了cURL库发送 xml 内容
    */
   function send( $str_xml, $str_url, $str_page, $boo_ssl = false )
   
      $str_header  = "POST " . $str_page . " HTTP/1.0 \\r\\n";
      $str_header .= "MIME-Version: 1.0 \\r\\n";
      $str_header .= "Content-type: application/PTI26 \\r\\n";
      $str_header .= "Content-length: " . strlen($str_xml) . " \\r\\n";
      $str_header .= "Content-transfer-encoding: text \\r\\n";
      $str_header .= "Request-number: 1 \\r\\n";
      $str_header .= "Document-type: Response\\r\\n";
      $str_header .= "Interface-Version: Site 1.0 \\r\\n";
      $str_header .= "Connection: close \\r\\n\\r\\n";
      $str_header .= $str_xml;

      $res_curl = curl_init();
      curl_setopt($res_curl, CURLOPT_URL, $str_url);
      curl_setopt($res_curl, CURLOPT_RETURNTRANSFER, 1);
      curl_setopt($res_curl, CURLOPT_TIMEOUT, 30);   
      curl_setopt($res_curl, CURLOPT_CUSTOMREQUEST, $str_header);
      curl_setopt($res_curl, CURLOPT_FOLLOWLOCATION, 1);
     
      if ( $boo_ssl ) 
         curl_setopt($res_curl, CURLOPT_SSL_VERIFYHOST,  0);
         curl_setopt($res_curl, CURLOPT_SSL_VERIFYPEER, false);
      
     
      $str_data = curl_exec($res_curl);
      if ( curl_errno($res_curl) ) 
         trigger_error(curl_error($res_curl), E_USER_ERROR);
       else 
         curl_close($res_curl);
      
     
      return $str_data;
   


$str_xml = '<xxx>blablabla</xxx><yyy>blebleble</yyy><zzzz>bliblibli</zzz>';

$o = new xmlSender;
print_r($o->send($str_xml, "https://endereco.com.br/", "/yyy/x.x.x/", true));
?>

=========================================
这几天我正在研究cURL,这个库正好能够完成你的需要,具体代码的编写需要示例数据与网站才能测试,以下是post的示例:

<?php
$url = 'http://www.example.com/submit.php';
// The submitted form data, encoded as query-string-style
// name-value pairs
$body = 'monkey=uncle&rhino=aunt';
$c = curl_init($url);
curl_setopt($c, CURLOPT_POST, true);
curl_setopt($c, CURLOPT_POSTFIELDS, $body);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
$page = curl_exec($c);
curl_close($c);
?>

php如何接收别的服务器post过来的数据 - 技术问答

最近搞一个短信平台发布作品,移动平台在接收到用户 彩信 后 post 我提供的一个url地址,将用户彩信的相关信息都放在里面通过http协议post方式给我,信息是xml格式的,我用php如何能够取得这段xml信息并读取写入数据库,现在碰到的问题是如何取得这段xml信息,请有经验的大侠帮帮忙啊~

通常情况下用户使用浏览器网页表单向服务器post提交数据,我们使用PHP的$_POST接收用户POST到服务器的数据,并进行适当的处理。但有些情况下,如用户使用客户端软件向服务端php程序发送post数据,而不能用$_POST来识别,那又该如何处理呢?
我们介绍php接受post数据的三种方式:
1.$_POST方式接收数据
$_POST方式是通过 HTTP POST 方法传递的变量组成的数组,是自动全局变量。如使用$_POST[‘name’]就可以接收到网页表单以及网页异步方式post过来的数据,
即$_POST只能接收文档类型为Content-Type: application/x-www-form-urlencoded提交的数据,也就是表单POST过来的数据。
2.$GLOBALS[‘HTTP_RAW_POST_DATA’]方式接收数据
但$GLOBALS[‘HTTP_RAW_POST_DATA’]中是否保存POST过来的数据取决于centent-Type的设置,只有在PHP在无法识别的Content-Type的情况下,才会将POST过来的数据原样地填入变量$GLOBALS[‘HTTP_RAW_POST_DATA’]中,像Content-Type=application/x-www-form-urlencoded时,该变量是空的。
另外,它同样无法读取Content-Type为multipart/form-data的POST数据,也需要设置php.ini中的always_populate_raw_post_data值为On,PHP才会总把POST数据填入变量$http_raw_post_data。
3.php://input方式接收数据
如果访问原始 POST 数据的更好方法是 php://input。php://input 允许读取 POST 的原始数据。和 $HTTP_RAW_POST_DATA 比起来,它给内存带来的压力较小,并且不需要任何特殊的php.ini设置,php://input不能用于 enctype=”multipart/form-data”。对于未指定 Content-Type 的POST数据,则可以使用file_get_contents(“php://input”)来获取原始数据。事实上,用PHP接收POST的任何数据都可以使用本方法。而不用考虑Content-Type,包括二进制文件流也可以。php://input读取不到$_GET数据。是因为$
参考技术A 你这个人咋就转不过来弯呢?不管是啥玩意,post过来的数据都在$_POST里如果post的是xml字符串那你就$_POST[\'xml\'],simplexml_load_string 解析直接可以用;如果是以文件(上传)提交的那就$_FILES,按照处理上传文件的方法,然后simplexml_load_file 解析PS: ASP还活着? 参考技术B 如果只是接收,那就$_POST[\'表单名\'];如果是解析就simplexml_load_string 参考技术C
$xml_array=json_decode(json_encode(simplexml_load_string($_POST)),true);

参考技术D [php]file_put_contents(\'debug.txt\', var_export($_POST, true));[/php]

以上是关于php如何post XML到指定服务器的主要内容,如果未能解决你的问题,请参考以下文章

php获取远程图片模拟post,file上传到指定服务器

如何从 PHP 访问 XML-RPC 数据?

如何通过 post 将 xml 发送到 wcf 服务

请教高手C#如何POST 一个XML文件到服务器

使用python如何post一个xml到指定的接口地址?

如何向php服务器发送数据为json的post请求