XMLReader
PHP Manual

XMLReader::isValid

(PHP 5 >= 5.1.2)

XMLReader::isValidIndicates if the parsed document is valid

설명

bool XMLReader::isValid ( void )

Returns a boolean indicating if the document being parsed is currently valid.

반환값

성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.

예제

Example #1 Validating XML

<?php
$xml 
XMLReader::open('test.xml');

// You must to use it
$xml->setParserProperty(XMLReader::VALIDATEtrue);

var_dump($xml->isValid());
?>

참고


XMLReader
PHP Manual