XMLReader::setSchema

(PHP 5 >= 5.2.0, PHP 7)

XMLReader::setSchemaValidate document against XSD

설명

public 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().

인수

filename

The filename of the XSD schema.

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

오류/예외

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

주의

Caution

이 함수는 PHP가 libxml 20620 이후와 함께 컴파일 되었을 때만 사용할 수 있습니다.

참고

add a note add a note

User Contributed Notes

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