DOMDocument->createProcessingInstruction()

(no version information, might be only in CVS)

DOMDocument->createProcessingInstruction() -- Creates new PI node

説明

class DOMDocument {

DOMProcessingInstruction createProcessingInstruction ( string target [, string data] )

}

This function creates a new instance of class DOMProcessingInstruction. このノードは、DOMNode->appendChild() などで 挿入されない限り、ドキュメント内に現われません。

パラメータ

target

The target of the processing instruction.

data

The content of the processing instruction.

戻り値

The new DOMProcessingInstruction or FALSE if an error occured.

例外

DOM_INVALID_CHARACTER_ERR

Raised if target contains an invalid character.

以下も参照ください

DOMNode->appendChild()
DOMDocument->createAttribute()
DOMDocument->createAttributeNS()
DOMDocument->createCDATASection()
DOMDocument->createComment()
DOMDocument->createDocumentFragment()
DOMDocument->createElement()
DOMDocument->createElementNS()
DOMDocument->createEntityReference()
DOMDocument->createTextNode()