DOMDocument
PHP Manual

DOMDocument::createProcessingInstruction

(PHP 5)

DOMDocument::createProcessingInstructionCreates new PI node

Descrizione

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

This function creates a new instance of class DOMProcessingInstruction. Questo nodo non verrĂ  mostrato nel documento a meno che venga inserito con, es. DOMNode::appendChild().

Elenco dei parametri

target

The target of the processing instruction.

data

The content of the processing instruction.

Valori restituiti

The new DOMProcessingInstruction or FALSE if an error occurred.

Errori/Eccezioni

DOM_INVALID_CHARACTER_ERR

Raised if target contains an invalid character.

Vedere anche:


DOMDocument
PHP Manual