我正在尝试将一些数据发布到Web服务。显然我身边出了点问题所以他们给我发了一些示例代码。该示例允许我手动输入数据并将其提交到他们的服务中。它工作并发送一个充满XML数据和用户/ id的文本区域。我已经有一个页面设置来轮询我的数据库并提取未完成的订单。我试图将txnid从paypal发送到新页面,以便它可以编译xml并发送它。我想我可以删除我用于失败方法的相同代码。 xml格式正确,但在我尝试使用SimpleXMLElement函数时出错了。这之前从文本字段传递的数据和工作正常。现在我收到了这个错误:
PHP致命错误:未捕获的异常'Exception',消息'String无法解析为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;
文字是一样的。我可以将生成的字符串复制并粘贴到另一个表单中并发布。这工作正常,但某处我错过了一些东西,因为函数不喜欢那个字符串。
答案 0 :(得分:0)
如果您没有任何记录$WebOrderXML
值为null
,则显示此异常
致命错误:未捕获的异常'异常',消息'字符串无法解析为XML'
因为SimpleXMLElement()
NULL
屈服了。
您可以使用$WebOrderXML
empty()
不$WebOrderXML
来NULL
查看SimpleXMLElement()
值,然后您可以将try
置于catch
if(!empty($WebOrderXML)){
try{
$sxml = new SimpleXMLElement($WebOrderXML);
}catch(Exception $e){
//show error or do some work
}
}
内控制异常
{{1}}