douguadao3883 2017-05-03 04:52
浏览 200
已采纳

php使用getElementsByTagNameNS从soap读取xml内容

This is my XML which i have:

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <soapenv:Body>
  <notifications xmlns="http://soap.sforce.com/2005/09/outbound">
   <OrganizationId>00Dp00000008kXDEAY</OrganizationId>
   <ActionId>04k28000000L3shAAC</ActionId>
   <SessionId xsi:nil="true"/>
   <EnterpriseUrl>https://232.salesforce.com/services/Soap/c/36.0/00Dp00000008kXD</EnterpriseUrl>
   <PartnerUrl>https://232.salesforce.com/services/Soap/u/36.0/00Dp00000008kXD</PartnerUrl>
   <Notification>
    <Id>034l3004D4247lVAAS</Id>
    <sObject xsi:type="sf:SMS_Activity__c" xmlns:sf="urn:sobject.enterprise.soap.sforce.com">
     <sf:Id>a0Ip0000001WxvaEAC</sf:Id>
     <sf:Brand__c>ABC</sf:Brand__c>
     <sf:Content__c>halo test</sf:Content__c>
     <sf:Mobile__c>628145783535</sf:Mobile__c>
    </sObject>
   </Notification>
  </notifications>
 </soapenv:Body>
</soapenv:Envelope>

Please help me how to read the value of (brand,content__C,mobile__c) with php code ?

I could not get Mobile__c that from what i tried the below code

 $notif=simplexml_load_string($xml);
      $Mobile=$notif->sObject-
      >children('urn:sobject.enterprise.soap.sforce.com')-
      >Mobile__c.PHP_EOL;
      $qd="";
      $qd="insert into incoming(phone) values('$Mobile')";
      mysql_query($qd);
  • 写回答

2条回答 默认 最新

  • dougan4884 2017-05-03 05:18
    关注

    Try this hope this will help you out..

    Try this code snippet here

    <?php
    
    ini_set('display_errors', 1);
    $string='<?xml version="1.0" encoding="UTF-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     <soapenv:Body>
      <notifications xmlns="http://soap.sforce.com/2005/09/outbound">
       <OrganizationId>00Dp00000008kXDEAY</OrganizationId>
       <ActionId>04k28000000L3shAAC</ActionId>
       <SessionId xsi:nil="true"/>
       <EnterpriseUrl>https://232.salesforce.com/services/Soap/c/36.0/00Dp00000008kXD</EnterpriseUrl>
       <PartnerUrl>https://232.salesforce.com/services/Soap/u/36.0/00Dp00000008kXD</PartnerUrl>
       <Notification>
        <Id>034l3004D4247lVAAS</Id>
        <sObject xsi:type="sf:SMS_Activity__c" xmlns:sf="urn:sobject.enterprise.soap.sforce.com">
         <sf:Id>a0Ip0000001WxvaEAC</sf:Id>
         <sf:Brand__c>ABC</sf:Brand__c>
         <sf:Content__c>halo test 1</sf:Content__c>
         <sf:Mobile__c>6281457835351</sf:Mobile__c>
        </sObject>
       </Notification> <Notification>
        <Id>034l3004D4247lVAAS</Id>
        <sObject xsi:type="sf:SMS_Activity__c" xmlns:sf="urn:sobject.enterprise.soap.sforce.com">
         <sf:Id>a0Ip0000001WxvaEAC</sf:Id>
         <sf:Brand__c>ABC2</sf:Brand__c>
         <sf:Content__c>halo test 2</sf:Content__c>
         <sf:Mobile__c>6281457835352</sf:Mobile__c>
        </sObject>
       </Notification> <Notification>
        <Id>034l3004D4247lVAAS</Id>
        <sObject xsi:type="sf:SMS_Activity__c" xmlns:sf="urn:sobject.enterprise.soap.sforce.com">
         <sf:Id>a0Ip0000001WxvaEAC</sf:Id>
         <sf:Brand__c>ABC3</sf:Brand__c>
         <sf:Content__c>halo test 3</sf:Content__c>
         <sf:Mobile__c>6281457835353</sf:Mobile__c>
        </sObject>
       </Notification>
      </notifications>
     </soapenv:Body>
    </soapenv:Envelope>';
    
    $requiredData=array();
    $result= new DOMDocument();
    $result->loadXML($string);
    foreach(array(
        "Brand__c",
        "Content__c",
        "Mobile__c"
    ) as $key)
    {
        foreach($result->getElementsByTagNameNS("urn:sobject.enterprise.soap.sforce.com",$key) as $element)
        {
            if($element instanceof DOMElement)
            {   
               $requiredData[$element->tagName][] =$element->textContent;
            }
        }
    }
    print_r($requiredData);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试
  • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题
  • ¥15 教务系统账号被盗号如何追溯设备
  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效