XMLReader::isValid
(PHP 5 >= 5.1.2)
XMLReader::isValid — Indicates if the parsed document is valid
Descrizione
bool XMLReader::isValid
( void
)
Returns a boolean indicating if the document being parsed is currently valid.
Valori restituiti
Restituisce TRUE in caso di successo, FALSE in caso di fallimento.
Esempi
Example #1 Validating XML
<?php
$xml = XMLReader::open('test.xml');
// You must to use it
$xml->setParserProperty(XMLReader::VALIDATE, true);
var_dump($xml->isValid());
?>
XMLReader::isValid
There are no user contributed notes for this page.
