您好我正在尝试使用以下代码将XML文件转换为关联数组
$xmlUrl = '../products.xml';
$xmlStr = file_get_contents($xmlUrl);
$xmlObj = simplexml_load_string($xmlStr); print_r ($xmlObj);exit;
$arrXml = objectsIntoArray($xmlObj);
和包含
的product.xml<?xml version="1.0" encoding="utf-8"?>
<products>
<product>
<sku>p750h3</sku>
<category>Plans: Vodafone Unlimited Cap</category>
<price>$0</price>
<totalmonthlycost>$129</totalmonthlycost>
<totalmincost>$3096</totalmincost>
<upfront>$0</upfront>
<imageurl>http://store.vodafone.com.au/Images/Upload/nokia-6260-slide-front_118x307.png</imageurl>
<threedurl>http://store.vodafone.com.au/handset-nokia-6260-slide.aspx#3d</threedurl>
<smallimageurl>http://store.vodafone.com.au/Images/Upload/nokia-6260-slide-front_23x60.png</smallimageurl>
<name>Nokia 6260 Slide $129 Unlimited Cap - 24 Months</name>
<description></description>
<ctppage>http://store.vodafone.com.au/handset-nokia-6260-slide.aspx</ctppage>
<features>
<![CDATA[
Exclusive to Vodafone, this advanced all – in - one device has advanced web and navigation features plus a handy 360 degree Navi key to help you stay in control.<br/><ul>
<li>5 MP camera with Carl Zeiss optics and Flash</li>
<li>WiFi, HSDPA and HSUPA</li>
<li>Integrated GPS Navigation</li>
<li>3G (<a href="/whatis3g-popup.aspx" onclick="window.open(this.href,'','resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=no,width=600,height=590,status'); return false"><u>What's this?</u></a>)</li>
</ul>
]]>
</features>
<available>Yes</available>
<shippingcost>$0.0</shippingcost>
<dimensions></dimensions>
<manufacturer>Nokia</manufacturer>
<modelnumber>6260 Slide</modelnumber>
<currency>AUD</currency>
<devicekeypoints><ul>
<li>5 MP camera with Carl Zeiss optics and Flash</li>
<li>WiFi, HSDPA and HSUPA</li>
<li>Integrated GPS Navigation</li>
<li>3G (<a href="/whatis3g-popup.aspx" onclick="window.open(this.href,'','resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=no,width=600,height=590,status'); return false"><u>What's this?</u></a>)</li>
</ul></devicekeypoints>
<deviceTagline></deviceTagline>
<deviceColor>Black</deviceColor>
<deviceSpecialOffers></deviceSpecialOffers>
<deviceMonthlyHandsetCost>0.0</deviceMonthlyHandsetCost>
<deviceRecommendedPlan>$129 Unlimited Cap - 24 Months</deviceRecommendedPlan>
<deviceOverallRating></deviceOverallRating>
<plan>
<term>24</term>
<monthlyCapCost>$129</monthlyCapCost>
<getMonthly>
<![CDATA[Monthly credit amount - UNLIMITED<br/>Monthly data - 4GB<sup>3</sup><br/>Vodafone to Vodafone Calls - UNLIMITED<br/>Also includes - Voicemail retrieval <br/><br/>Flexi credit amount - NA<br/>Standard national voice calls - UNLIMITED<br/>Standard txt and pxt - UNLIMITED<br/>]]>
</getMonthly>
</plan>
</product>...etc
但它返回如下错误消息
Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 1: parser error : String not started expecting ' or " in D:\EBU\xampp\htdocs\biglinks\include\productUpdate.php on line 24
Warning: simplexml_load_string() [function.simplexml-load-string]: <?xml version=\"1.0\" encoding=\"utf-8\"?> in D:\EBU\xampp\htdocs\biglinks\include\productUpdate.php on line 24
Warning: simplexml_load_string() [function.simplexml-load-string]: ^ in D:\EBU\xampp\htdocs\biglinks\include\productUpdate.php on line 24
Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 1: parser error : Malformed declaration expecting version in D:\EBU\xampp\htdocs\biglinks\include\productUpdate.php on line 24
Warning: simplexml_load_string() [function.simplexml-load-string]: <?xml version=\"1.0\" encoding=\"utf-8\"?> in D:\EBU\xampp\htdocs\biglinks\include\productUpdate.php on line 24
Warning: simplexml_load_string() [function.simplexml-load-string]: ^ in D:\EBU\xampp\htdocs\biglinks\include\productUpdate.php on line 24......etc
我试图整天解决这个问题并通过网络搜索解决方案,但我无法得到。请让我知道原因?
答案 0 :(得分:9)
这可能是由于magic_quotes_runtime在调用file_get_contents时添加反斜杠引起的。请尝试以下方法:
$xmlUrl = '../products.xml';
$xmlStr = file_get_contents($xmlUrl);
if (get_magic_quotes_runtime())
{
$xmlStr = stripslashes($xmlStr);
}
$xmlObj = simplexml_load_string($xmlStr); print_r ($xmlObj);exit;
$arrXml = objectsIntoArray($xmlObj); $xmlStr = file_get_contents($xmlUrl);
或者您可以在PHP配置中通过.htaccess禁用magic_quotes_runtime(尽管这可能会影响脚本中的其他位置),或者在脚本顶部附近添加以下内容:
set_magic_quotes_runtime(false);
答案 1 :(得分:0)
您应修复XML字符串,它无效。 如果要保持XML原样并避免验证错误,请使用simplexml_load_string()的第3个参数来设置正确的选项,请参阅http://php.net/manual/fr/function.simplexml-load-string.php和http://www.php.net/manual/fr/libxml.constants.php
顺便说一下,我不明白为什么它会使用转义引号显示您的XML,它是否在源文件中转义?
答案 2 :(得分:0)
出于好奇,你为什么不使用simplexml_load_file()?