发送使用HTTP POST与PHP的XML数据(Sending XML data using HTT

2019-09-04 01:53发布

我需要发送此XML

      <?xml version="1.0" encoding="UTF-8"?>
<gate>
   <country>NO</country>
   <accessNumber>1900</accessNumber>
   <senderNumber>1900</senderNumber>
   <targetNumber>4792267523</targetNumber>
   <price>0</price>
   <sms>
      <content><![CDATA[This is a test æøå ÆØÅ]]></content>
   </sms>
</gate>

到SMS网关服务。 该服务侦听HTTP POST请求。 该XML必须嵌入在POST请求的主体。

我使用PHP和CodeIgniter的框架,但我是一个总的PHP的n00b,所以最好我需要深入讲解,但在正确的方向的任何指针将不胜感激。

Answer 1:

您可以使用卷曲库发布数据: http://www.php.net/curl

$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_URL, "http://websiteURL");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "XML=".$xmlcontent."&password=".$password."&etc=etc");
$content=curl_exec($ch);

其中postfield包含XML你需要发送的 - 你将需要命名postfield API服务(的Clickate我猜的)预期



Answer 2:

另一种选择是file_get_contents()

// $xml_str = your xml
// $url = target url

$post_data = array('xml' => $xml_str);
$stream_options = array(
    'http' => array(
        'method'  => 'POST',
        'header'  => 'Content-type: application/x-www-form-urlencoded' . "\r\n",
        'content' =>  http_build_query($post_data)));

$context  = stream_context_create($stream_options);
$response = file_get_contents($url, null, $context);


文章来源: Sending XML data using HTTP POST with PHP