XMLReader::setSchema

(PHP 5 >= 5.2.0)

XMLReader::setSchemaValidate document against XSD

Beskrivelse

bool XMLReader::setSchema ( string $filename )

Use W3C XSD schema to validate the document as it is processed. Activation is only possible before the first Read().

Parametre

filename

The filename of the XSD schema.

Returnerings Værdier

Returns TRUE on success or FALSE on failure.

Fejl/Undtagelser

Issues E_WARNING if libxml was built without schema support, the schema contains errors or if XMLReader::read() has already been called.

Noter

Advarsel

This function is only available when PHP is compiled against libxml 20620 or later.

Se også

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top