A use exemple of this method :
Usefull for generating an XML linked with a XSLT !
<?php
// "Create" the document.
$xml = new DOMDocument( "1.0", "ISO-8859-15" );
//to have indented output, not just a line
$xml->preserveWhiteSpace = false;
$xml->formatOutput = true;
// ------------- Interresting part here ------------
//creating an xslt adding processing line
$xslt = $xml->createProcessingInstruction('xml-stylesheet', 'type="text/xsl" href="base.xsl"');
//adding it to the xml
$xml->appendChild($xslt);
// ----------- / Interresting part here -------------
//adding some elements
$root = $xml->createElement("list");
$node = $xml->createElement("contact", "John Doe");
$root-> appendChild($node);
$xml-> appendChild($root);
//creating the file
$xml-> save("output.xml");
?>
output.xml :
<?xml version="1.0" encoding="ISO-8859-15"?>
<?xml-stylesheet type="text/xsl" href="base.xsl"?> //the line has been created successfully
<list>
<contact>John Doe</contact>
</list>
DOMDocument::createProcessingInstruction
(PHP 5)
DOMDocument::createProcessingInstruction — Yeni bir işlem komutu düğümü oluşturur
Açıklama
DOMProcessingInstruction DOMDocument::createProcessingInstruction
( string
$hedef
[, string $veri
] )Bu işlev yeni bir DOMProcessingInstruction nesnesi oluşturur. Bu düğüm, DomNode::append_child() gibi bir yöntemle belgeye yerleştirilmedikçe belgede gösterilmez.
Değiştirgeler
-
hedef -
İşlem komutunun hedefi.
-
veri -
İşlem komutunun içeriği.
Dönen Değerler
Bir hata oluşursa FALSE yoksa yeni bir
DOMProcessingInstruction nesnesi döner.
Hatalar/İstisnalar
-
DOM_INVALID_CHARACTER_ERR -
hedefgeçersiz karakter içeriyırsa oluşur.
Ayrıca Bakınız
- DOMNode::appendChild() - Listenin sonuna yeni bir çocuk ekler
- DOMDocument::createAttribute() - Yeni bir öznitelik düğümü oluşturur
- DOMDocument::createAttributeNS() - Yeni bir isim alanlı öznitelik düğümü oluşturur
- DOMDocument::createCDATASection() - Yeni bir CDATA düğümü oluşturur
- DOMDocument::createComment() - Yeni bir açıklama düğümü oluşturur
- DOMDocument::createDocumentFragment() - Yeni bir belge bölütü oluşturur
- DOMDocument::createElement() - Yeni bir eleman düğümü oluşturur
- DOMDocument::createElementNS() - İsim alanlı bir eleman düğümü oluşturur
- DOMDocument::createEntityReference() - Yeni bir öğe bildirimi düğümü oluşturur
- DOMDocument::createTextNode() - Yeni bir metin düğümü oluşturur
romain at supinfo dot com
03-Feb-2009 11:57
