0

我已经使用 php 构建了一个自定义 api,它是一个通过发布 xml 数据工作的简单 api。我正在努力发布到 api 的代码是:

<?php 
$xml_data = '<document>
 <first>'.$first.'</first>
 <last>'.$last.'</last>
 <email>'.$email.'</email>
 <phone>'.$phone.'</phone>
 <body>TEST</body>
</document>';
        $URL = "url";
        $ch = curl_init($URL);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_HEADER, 0);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml'));
        curl_setopt($ch, CURLOPT_POSTFIELDS, "$xml_data");
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        $output = curl_exec($ch);
        curl_close($ch);
        $Response = curl_exec($ch);    
    curl_close($ch);
    echo "Responce= ".$responce;
?>

另一方面,上面的代码发布到:

<?php 
$postdata = file_get_contents("php://input"); 
$xml = simplexml_load_string($postdata);
$first = $xml->first;
$last = $xml->last;
$email = $xml->email;
$phone = $xml->phone;
?>

然后我将这些 php 变量发送到数据库。所有这些代码都在工作!

但我的问题是:如何将回复发送回发帖方?如何使用 curl_init 发送到 curl_exec?

任何帮助都会很棒!谢谢杰森

4

2 回答 2

2

我想你想要:

 echo "Responce= ".$Response;
                   ^^^
于 2013-01-07T19:49:59.223 回答
1

要返回响应,您需要执行与任何其他内容相同的操作,设置标题并回显您的输出。例如,要返回 xml 响应,从处理 post 数据的脚本执行以下操作

<?php 
$postdata = file_get_contents("php://input"); 
$xml = simplexml_load_string($postdata);
$first = $xml->first;
$last = $xml->last;
$email = $xml->email;
$phone = $xml->phone;

// do your db stuff

// format response
$response = '<response>
    <success>Hello World</success>
</response>';
// set header
header('Content-type: text/xml');
// echo xml identifier and response back
echo chr(60).chr(63).'xml version="1.0" encoding="utf-8" '.chr(63).chr(62);
echo $response;
exit;
?>

您应该看到从返回的响应curl_exec()

于 2013-01-07T20:17:01.257 回答