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