您好,登錄后才能下訂單哦!
這篇“php攜程機票接口怎么寫”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“php攜程機票接口怎么寫”文章吧。
<?php function httpRequestSoapData($responseUrl,$requestXML) { try{ $myhttp = new HttpRequest($responseUrl."?WSDL","POST"); //--相對于API2.0固定 $r_head=<<<BEGIN <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <Request xmlns="http://ctrip.com/"> <requestXML> BEGIN; $r_end=<<<BEGIN </requestXML> </Request> </soap:Body> </soap:Envelope> BEGIN; //返回頭 $responseHead=<<<begin <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><RequestResponse xmlns="http://ctrip.com/"><RequestResult> begin; //返回尾 $responseEnd=<<<begin </RequestResult></RequestResponse></soap:Body></soap:Envelope> begin; $requestXML=str_replace("<",@"<",$requestXML); $requestXML=str_replace(">",@">",$requestXML); $requestXML=$r_head.$requestXML.$r_end; $myhttp->open(); $myhttp->send($requestXML); $myhttp->getResponseBody(); $coutw=$myhttp->getResponseBody(); $coutw=str_replace($responseHead,"",$coutw);//替換返回頭 $coutw=str_replace($responseEnd,"",$coutw);//替換返回尾 $coutw=str_replace("<","<",$coutw);//將符號換回來 $coutw=str_replace(">",">",$coutw);//將符號換回來 // echo $coutw; return $coutw; } catch (SoapFault $fault){ return $fault->faultcode; } }?>
以上就是關于“php攜程機票接口怎么寫”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。