php XML DOM出错

时间:2011-01-12 19:00:56

标签: php xml xmldom

我收到了一个我无法解决的错误。

$unsortedArray = array (array ( 'profileId' => '32', 'profileMiniature' => '32' ,'firstName' => 'Sarmad', 'lastName' => 'Nekomanesh', 'numberOfMutualContacts' => '0' ), array ( 'profileId' => '37', 'profileMiniature' => '37', 'firstName' => 'Sophie', 'lastName' => 'Gronlund', 'numberOfMutualContacts' => '0' ) );

header('Content-type: text/xml');
$xml = new DOMDocument('1.0', 'utf-8');


foreach($unsortedArray as $v){
    $profiles = $xml->createElement('profiles');
    $xml->appendChild($profiles);
    $profile = $xml->createElement('profile');
    $profile->setAttribute('profileId', $v['profileId']);
    $profile->setAttribute('profileMiniature', $v['profileMiniature']);
    $profile->setAttribute('firstName', $v['firstName']);
    $profile->setAttribute('lastName', $v['lastName']);
    $profiles->appendChild($profile);
}


$xml->formatOutput = true;
echo $xml->saveXML();

当我在数组中只有一个数组元素时,我没有任何错误。

2 个答案:

答案 0 :(得分:0)

你可以试试这个:

$xml->formatOutput = false;

echo 命令。看,有任何错误。

答案 1 :(得分:0)

我运行了你的代码行(复制和粘贴)并且没有错误。它打印有效的XML文档。您可能在其他代码中有错误。