blob: f803d7ab1b87c4fdd3b993c7973c0d7d1fa4d3d9 (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
--TEST--
libxml_get_errors()
--SKIPIF--
<?php if (!extension_loaded('simplexml')) die('skip'); ?>
--FILE--
<?php
var_dump(libxml_use_internal_errors(true));
$xmlstr = <<< XML
<?xml version='1.0' standalone='yes'?>
<movies>
<movie>
<titles>PHP: Behind the Parser</title>
</movie>
</movies>
XML;
$doc = simplexml_load_string($xmlstr);
$xml = explode("\n", $xmlstr);
if (!$doc) {
$errors = libxml_get_errors();
foreach ($errors as $error) {
echo display_xml_error($error, $xml);
}
var_dump(libxml_get_last_error());
}
function display_xml_error($error, $xml)
{
$return = $xml[$error->line - 1] . "\n";
$return .= str_repeat('-', $error->column) . "^\n";
switch ($error->level) {
case LIBXML_ERR_WARNING:
$return .= "Warning $error->code: ";
break;
case LIBXML_ERR_ERROR:
$return .= "Error $error->code: ";
break;
case LIBXML_ERR_FATAL:
$return .= "Fatal Error $error->code: ";
break;
}
$return .= trim($error->message) . "\n Line: $error->line" . "\n Column: $error->column";
if ($error->file) {
$return .= "\n File: $error->file";
}
return "$return\n\n--------------------------------------------\n\n";
}
echo "Done\n";
?>
--EXPECTF--
bool(false)
<titles>PHP: Behind the Parser</title>
%s
Fatal Error 76: Opening and ending tag mismatch: titles line 4 and title
Line: 4
Column: %d
--------------------------------------------
object(LibXMLError)#%d (6) {
["level"]=>
int(3)
["code"]=>
int(76)
["column"]=>
int(%d)
["message"]=>
string(57) "Opening and ending tag mismatch: titles line 4 and title
"
["file"]=>
string(0) ""
["line"]=>
int(4)
}
Done
|