-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexample.php
27 lines (20 loc) · 897 Bytes
/
example.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php declare(strict_types=1);
namespace Hyperized\Xml;
require __DIR__ . '/vendor/autoload.php';
$xmlString = file_get_contents(__DIR__ . '/tests/files/correct.xml');
$dirtyXMLString = file_get_contents(__DIR__ . '/tests/files/incorrect.xml');
$xmlFile = __DIR__ . '/tests/files/correct.xml';
$xsdFile = __DIR__ . '/tests/files/simple.xsd';
$validator = new Validator();
// String validation
print_r($validator->isXMLStringValid($xmlString)); // 1
print_r($validator->isXMLStringValid($xmlString, $xsdFile)); // 1
// File validation
print_r($validator->isXMLFileValid($xmlFile)); // 1
print_r($validator->isXMLFileValid($xmlFile, $xsdFile)); // 1
// Error handling
try {
$validator->isXMLStringValid($dirtyXMLString, $xsdFile);
} catch (Exceptions\InvalidXml $exception) {
print_r($exception->getMessage()); // xmlParseEntityRef: no name\n The document has no document element.
}