0

我正在尝试将一些数据发布到 Web 服务。显然我这边出了点问题,所以他们给我发了一些示例代码。该示例允许我手动输入数据并将其提交到他们的服务中。它工作并发送一个充满 XML 数据和一个用户/ID 的文本区域。我已经有一个页面设置来轮询我的数据库并提取未完成的订单。我正在尝试将 txnid 从贝宝发送到新页面,以便它可以编译 xml 并发送它。我想我可以删除用于失败方法的相同代码。xml 格式正确,但是当我尝试使用 SimpleXMLElement 函数时出现问题。这以前从文本字段传递的数据并且工作正常。现在我得到这个错误:

PHP 致命错误:未捕获的异常“异常”,消息“字符串无法解析为 XML”

这是给出错误的代码

include('connect-db.php');                                  

// get the records from the database
if ($result = $mysqli->query("SELECT * FROM paypal_payment_info WHERE txnid = '" .$_GET['txnid']. "'"))
{
    // display records if there are records to display
   if ($result->num_rows > 0)
    {
        $row = $result->fetch_object();

        // set up a row for each record

        $webOrderXML = "<WorkOrder>
                  <OrderID>127834</OrderID>
                  <OrderType>test</OrderType>
                  <ProjectCode> </ProjectCode>
                  <ProjectShipDate></ProjectShipDate>
                  <RetailerPO></RetailerPO>
                  <LineItems>
                    <LineItem>
                      <LineNumber>1</LineNumber>
                      <ProductCode>3PF-DD-SLPGZ6</ProductCode>
                      <ProductUPC></ProductUPC>
                      <ItemDescription>Filename</ItemDescription>
                      <Quantity>1</Quantity>
                      <ItemSSCC></ItemSSCC>
                      <FileList>
                <Source>/images/" . $row->itemname. str_replace(' ', "", str_replace('"', "", $row->os0)).  str_replace('"', "", $row->os1) . str_replace('"', "", $row->os2). ".jpg </Source>
                      </FileList>
                    </LineItem>
                  </LineItems>
                  <CustomerBillingInfo>
                  </CustomerBillingInfo>
                  <CustomerShippingInfo>
                    <Name>".$row->firstname. " " . $row->lastname."</Name>
                    <Address1>".$row->street."</Address1>
                    <Address2> </Address2>
                    <City>".$row->city."</City>
                    <State>".$row->state. "</State>
                    <PostalCode>".$row->zipcode."</PostalCode>
                    <Country>".$row->country."</Country>
                    <ShippingMethod>UPS</ShippingMethod>
                    <ShipAccountNum></ShipAccountNum>
                    <ShipType>MTH</ShipType>
                    <DC> </DC>
                  </CustomerShippingInfo>
                  <OrderProperties>
                  </OrderProperties>
                </WorkOrder>";                                      


    }
    // if there are no records in the database, display an alert message
    else
    {
            echo "No results to display!";
    }

}
// show an error if there is an issue with the database query
else
{
        echo "Error: " . $mysqli->error;
}

// close database connection
$mysqli->close();


//$WebOrderXML = $_POST['webOrderXML'];//orderxml


$sxml = new SimpleXMLElement($WebOrderXML); 

$orderidx = $sxml->OrderID;

文字是一样的。我可以将生成的字符串复制并粘贴到其他表单中并发布。这很好用,但在某处我遗漏了一些东西,因为该函数不喜欢那个字符串。

4

1 回答 1

0

注意,如果您没有任何记录$WebOrderXML值,则null显示此异常

致命错误:未捕获的异常“异常”,消息“字符串无法解析为 XML”

因为SimpleXMLElement() NULL让步。你可以 用那个不是检查$WebOrderXML值, 你可以把控制异常 放在里面empty()$WebOrderXMLNULLSimpleXMLElement()try catch

if(!empty($WebOrderXML)){
  try{
      $sxml = new SimpleXMLElement($WebOrderXML);
  }catch(Exception $e){
      //show error or do some work
  }
} 
于 2013-04-18T16:40:48.130 回答