XMLReader::isValid

(PHP 5 >= 5.1.2)

XMLReader::isValidIndicates if the parsed document is valid

Description

bool XMLReader::isValid ( void )

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

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #1 Validating XML

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

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

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

See Also


Copyright © 2010-2024 Platon Technologies, s.r.o.           Home | Man pages | tLDP | Documents | Utilities | About
Design by styleshout