downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

DOMDocument::createTextNode> <DOMDocument::createEntityReference
Last updated: Fri, 13 Nov 2009

view this page in

DOMDocument::createProcessingInstruction

(PHP 5)

DOMDocument::createProcessingInstruction新しい PI ノードを作成する

説明

DOMProcessingInstruction DOMDocument::createProcessingInstruction ( string $target [, string $data ] )

この関数は、DOMProcessingInstruction クラスの新しいインスタンスを作成します。このノードは、(たとえば) DOMNode->appendChild() などで 挿入されない限り、ドキュメント内に現われません。

パラメータ

target

処理命令の対象。

data

処理命令の内容。

返り値

新しい DOMProcessingInstruction、 あるいはエラーが発生した場合には FALSE を返します。

エラー / 例外

DOM_INVALID_CHARACTER_ERR

target が無効な文字を含んでいる場合に発生します。

参考



add a note add a note User Contributed Notes
DOMDocument::createProcessingInstruction
romain at supinfo dot com
04-Feb-2009 04:57
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>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites