Подтвердить что ты не робот

Проверить файл xml на xsd, используя php

как проверить файл xml на xsd? есть domdocument:: schemaValidate(), но он не говорит, где ошибки. есть ли для этого класс? есть ли смысл делать этот парсер с нуля? или он просто изобретает колесо,

4b9b3361

Ответ 1

Этот код выполняет следующие действия:

$xml= new DOMDocument();
$xml->loadXML(<A string goes here containing the XML data>, LIBXML_NOBLANKS); // Or load if filename required
if (!$xml->schemaValidate(<file name for the XSD file>)) // Or schemaValidateSource if string used.
{
   // You have an error in the XML file
}

Смотрите код в http://php.net/manual/en/domdocument.schemavalidate.php Чтобы получить ошибки.

т.е.

justin at redwiredesign dot com 08-Nov-2006 03:32 post.

Ответ 2

Вклад пользователя из http://php.net/manual/en/domdocument.schemavalidate.php

Он работает как шарм!

Для получения более подробной информации от DOMDocument:: schemaValidate, отключите ошибки libxml и получить информацию об ошибке. Видеть http://php.net/manual/en/ref.libxml.php для получения дополнительной информации.

example.xml

<?xml version="1.0"?>
<example>
    <child_string>This is an example.</child_string>
    <child_integer>Error condition.</child_integer>
</example>

example.xsd

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
    <xs:element name="example">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="child_string" type="xs:string"/>
                <xs:element name="child_integer" type="xs:integer"/>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>

PHP

<?php

function libxml_display_error($error)
{
    $return = "<br/>\n";
    switch ($error->level) {
        case LIBXML_ERR_WARNING:
            $return .= "<b>Warning $error->code</b>: ";
            break;
        case LIBXML_ERR_ERROR:
            $return .= "<b>Error $error->code</b>: ";
            break;
        case LIBXML_ERR_FATAL:
            $return .= "<b>Fatal Error $error->code</b>: ";
            break;
    }
    $return .= trim($error->message);
    if ($error->file) {
        $return .=    " in <b>$error->file</b>";
    }
    $return .= " on line <b>$error->line</b>\n";

    return $return;
}

function libxml_display_errors() {
    $errors = libxml_get_errors();
    foreach ($errors as $error) {
        print libxml_display_error($error);
    }
    libxml_clear_errors();
}

// Enable user error handling
libxml_use_internal_errors(true);

$xml = new DOMDocument();
$xml->load('example.xml');

if (!$xml->schemaValidate('example.xsd')) {
    print '<b>DOMDocument::schemaValidate() Generated Errors!</b>';
    libxml_display_errors();
}

?>