() SchemaValidate ile XML doğrularken PHP bir dize olarak uyarı mesajı almak nasıl?

2 Cevap php

Ben bir XSD dosyası karşı bir XML dosyasını doğrulamak için bu kodu vardır:

$file = 'test.xml';
$schema = 'test.xsd';
$dom = new DOMDocument;
$dom->load($file);


if ($dom->schemaValidate($schema)) {
    print "$file is valid.\n";
} else {
    print "$file is invalid.\n";
}

If the xml file is invalid, then it says that it is invalid. The reason it is invalid (e.g. price is not an integer), however, is only given in a PHP warning, which I have to suppress so that user doesn't see it (with error_reporting(0)).

Nasıl bu mesajın metnini almak ve ben bir try / catch C # ile yapacağı gibi, kullanıcıya geçebilir?

2 Cevap

Bunu biri için libxml 'ın hata işlevleri kullanabilirsiniz düşünüyorum:

Basit bir örnek:

$file = 'test.xml';
$schema = 'test.xsd';
$dom = new DOMDocument;
$dom->load($file);

libxml_use_internal_errors(true);     
if ($dom->schemaValidate($schema)) {
    print "$file is valid.\n";
} else {
    print "$file is invalid.\n";
    $errors = libxml_get_errors();
    foreach ($errors as $error) {
        printf('XML error "%s" [%d] (Code %d) in %s on line %d column %d' . "\n",
            $error->message, $error->level, $error->code, $error->file,
            $error->line, $error->column);
    }
    libxml_clear_errors();
}
libxml_use_internal_errors(false);

Sadece yazdırmak gerekiyorsa, size özel tanımlayabilirsiniz error handler hatayı yazdırmak için olabilir.