1 | <?php |
||
16 | class Xml implements FileParserInterface |
||
17 | { |
||
18 | /** |
||
19 | * {@inheritDoc} |
||
20 | * Parses an XML file as an array |
||
21 | * |
||
22 | * @throws ParseException If there is an error parsing the XML file |
||
23 | */ |
||
24 | 6 | public function parse($path) |
|
25 | { |
||
26 | 6 | libxml_use_internal_errors(true); |
|
27 | |||
28 | 6 | $data = simplexml_load_file($path, null, LIBXML_NOERROR); |
|
29 | |||
30 | 6 | if ($data === false) { |
|
31 | 3 | $errors = libxml_get_errors(); |
|
32 | 3 | $latestError = array_pop($errors); |
|
33 | $error = array( |
||
34 | 3 | 'message' => $latestError->message, |
|
35 | 3 | 'type' => $latestError->level, |
|
36 | 3 | 'code' => $latestError->code, |
|
37 | 3 | 'file' => $latestError->file, |
|
38 | 3 | 'line' => $latestError->line, |
|
39 | 3 | ); |
|
40 | 3 | throw new ParseException($error); |
|
41 | } |
||
42 | |||
43 | 3 | $data = json_decode(json_encode($data), true); |
|
44 | |||
45 | 3 | return $data; |
|
46 | } |
||
47 | |||
48 | /** |
||
49 | * {@inheritDoc} |
||
50 | */ |
||
51 | 3 | public function getSupportedExtensions() |
|
55 | } |
||
56 |