PHP DOM XML - Çoklu Alan Öznitelikleri yarat?

4 Cevap php

Ben DOM uzantısı kullanarak bir veritabanından XML oluşturmak için bazı PHP üzerinde çalışıyorum.

Temelde, bir ad alanı oluşturabilir ve buna 3 özelliklerini eklemek gerekir:

<NameSpaceName xmlns="uri:xxx"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="uri:xxx">

Ben yazdım tam kod aşağıda:

include_once("includes/connect.php");

$sql = ("SELECT * FROM tableName");
$query = mysql_query($sql) or die("Error: " . mysql_error());


// create a new XML document
$doc = new DomDocument('1.0', 'UTF-8');

// create root node
$root = $doc->createElementNS('uri:xxx', 'PayerRecords');
$root = $doc->appendChild($root);
$root->setAttributeNS('http://www.w3.org/2000/xmlns/' ,'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance');
$root->setAttributeNS('http://www.w3.org/2000/xmlns/' ,'xsi:schemaLocation', 'uri:xxx');

// process one row at a time
while($row = mysql_fetch_assoc($query)) {

  // add node for each row
  $occ = $doc->createElement('Content');
  $occ = $root->appendChild($occ);

  // add a child node for each field
  foreach ($row as $fieldname => $fieldvalue) {

    $child = $doc->createElement($fieldname);
    $child = $occ->appendChild($child);

    $value = $doc->createTextNode($fieldvalue);
    $value = $child->appendChild($value);

  } // foreach

} // while

// get completed xml document
$xml_string = $doc->saveXML();

echo $xml_string;

Ben yukarıda yürütmek Ama ben bu hatayı alıyorum:

Fatal error: Uncaught exception 'DOMException' with message 'Namespace Error' in xml.php:21 Stack trace: #0 xml.php(21): DOMElement->setAttributeNS('http://www.w3.o...', 'xsi:schemaLocat...', 'uri:xxx...') #1 {main} thrown in xml.php on line 21

Hat 21, ikinci 'setAttributeNS' hattıdır.

Ben yanlış gidiyorum Herkes nerede görebilirsiniz?

4 Cevap

schemaLocation ad http://www.w3.org/2000/xmlns/ ama http://www.w3.org/2001/XMLSchema-instance olarak ilan edilmez

<?php
// create a new XML document
$doc = new DomDocument('1.0', 'UTF-8');
// create root node
$root = $doc->createElementNS('http://xxx', 'PayerRecords');
$root = $doc->appendChild($root);
$root->setAttributeNS('http://www.w3.org/2000/xmlns/' ,'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance');
$root->setAttributeNS('http://www.w3.org/2001/XMLSchema-instance', 'schemaLocation', 'http://xxx');

echo $doc->savexml();

baskılar

<?xml version="1.0" encoding="UTF-8"?>
<PayerRecords xmlns="http://xxx" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xxx"/>

ile hat 21 değiştirin

$root->setAttributeNS(
  'http://www.w3.org/2001/XMLSchema-instance', 
  'xsi:schemaLocation',
  'http://xxx http://xxx/xxx.xsd'
);

xsi:schemaLocation http://www.w3.org/2000/xmlns/ veya ad tanımlı değil, ancak içinde xsi. böylece ilk parametre olarak (tam) xsi ad alanı URI kullanmak zorunda.

ve: iki kez setAttributeNS() aramak gerekmez: Yukarıdaki tek satır hem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ve xsi:schemaLocation="http://xxx http://xxx/xxx.xsd oluşturur " bağlıyor.

Ben daha ayrıntılı olarak benim cevap ilanıyla yüzden oldukça bunu ilk defa alamadım. Belki birisi bu yararlı bulur.

// create DOM document
$xml = new DomDocument('1.0', 'UTF-8');

// create root element
$el = $xml->createElementNS('http://namespaceA/url/here/', 'rootelement');

// to be able to add new namespaces we must first add namespace 'xsi'
// third parameter is important (use your main namespace with .xsd)
$root->setAttributeNS(
  'http://www.w3.org/2001/XMLSchema-instance',
  'xsi:schemaLocation',
  'http://namespaceA/url/here/ http://namespaceA/xsdfile/here.xsd');

// add new namespace
$el->setAttributeNS(
  'http://www.w3.org/2000/xmlns/',
  'xmlns:namespaceB',
  'http://namespaceB/url/here/');

// add root element to DOM
$xml->appendChild($el);

Bu e-posta arşiv mesaj çok yararlı oldu: http://www.mail-archive.com/php-general@lists.php.net/msg135362.html.

Sizin "cevap" çalışmıyor:

Ölümcül hata: olmayan bir nesne üzerinde bir üye işlev setAttributeNS () Çağrı