求教高手:php操纵XML本地测试成功,上传到服务器就不能解析

来源:百度知道 编辑:UC知道 时间:2024/07/04 09:22:32
XML文件:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<firends>
<firend>
<name>111</name>
<phone>111</phone>
<password>000</password>
</firend>
<firend>
<name>222</name>
<phone>222</phone>
<password>000</password>
</firend>
<firend>
<name>333</name>
<phone>333</phone>
<password>000</password>
</firend>
<firend>
<name>ccc</name>
<phone>ccc</phone>
<password>000</password>
</firend>
</firends>

php文件
<?php
$doc = new DOMDocument();
$doc->load('a.xml');
$firends = $doc->getElementsByTagName( "firend" );
foreach( $firends as $firend )
{

<?xml version="1.0" encoding="gb2312"?>
<Root>
<Cigarette>实时价格一览表</Cigarette>
<Item id="1">
<ProductTag>石林(软包)</ProductTag>
<PricePer>3.50</PricePer>
<Quantity>100</Quantity>
<Subtotal>350.00</Subtotal>
<Description>NULL</Description>
</Item>
<Item id="2">
<ProductTag>桂花(白、软包)</ProductTag>
<PricePer>2.50</PricePer>
<Quantity>10</Quantity>
<Subtotal>25.00</Subtotal>
<Description>NULL</Description>
</Item>
<Item id="3">
<ProductTag>一品黄山(硬包)</ProductTag>
<PricePer>5.50</PricePer>
<Quantity>1000</Quantity>
<Subtotal>5500.00</Subtotal>
<De