这篇“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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。