Função PHP libxml_get_last_error ()
Definição e Uso
XML é uma linguagem de marcação para compartilhar os dados na web, XML é tanto para leitura humana quanto para máquina. A classe libXMLError contém os erros lançados pela biblioteca libxml.
o libxml_get_last_error() A função é usada para recuperar o último erro em uma string XML ou documento.
Sintaxe
SimpleXMLElement::libxml_get_errors();
Parâmetros
Esta função não aceita nenhum parâmetro.
Valores Retornados
Esta função retorna um objeto do tipo LibXMLError que representa o último erro no arquivo / string XML. Se não houver erros no XML especificado, esta função retornará uma string vazia.
Versão PHP
Esta função foi introduzida pela primeira vez no PHP Versão 5 e funciona em todas as versões posteriores.
Exemplo
O exemplo a seguir demonstra o uso da função libxml_get_last_error ().
<html>
<head>
<body>
<?php
libxml_use_internal_errors(true);
$str = "<Data xmlns:ns='http://test.com/data'>
<Employee>
<ns:Name>Krishna</ns:Name>
<Age>30</Age>
<City>Hyderabad</City>
</Employeee>
<Employee>
<ns:Name>Ramu</ns:Name>
<Age>25</Age>
<City>Delhi</test>
</Employee>
</Data> ";
$doc = simplexml_load_string($str);
if ($doc === false) {
$error = libxml_get_last_error();
print("Error: ");
print_r($error);
}
?>
</body>
</head>
</html>
Isso produzirá o seguinte resultado -
Error: LibXMLError Object (
[level] => 3
[code] => 76
[column] => 31
[message] => Opening and ending tag mismatch: City line 2 and test \
[file] => [line] => 11
)
Exemplo
A seguir está outro exemplo desta função -
data.xml:
<Tutorials>
<Tutorial>
<Name>JavaFX</Name>
<Pages>535</Pages>
<Author>Krishna</Author>
<Version>11<Version>
</Tutorial>
<Tutorial>
<Name>CoffeeScript</Name>
<Pages>235</Pages>
<Author>Kasyap</test>
<Version>2.5.1</Version>
</Tutorial>
<Tutorial>
<Name>OpenCV</Name>
<Pages>150</Pages>
<Author>Maruti</Author>
<Version></Version>
</Tutorial>
</Tutorials>
Sample.html
<html>
<head>
<body>
<?php
libxml_use_internal_errors(true);
$xml = simplexml_load_file("data.xml");
if ($xml === false) {
$error = libxml_get_last_error();
print("Error: ");
print_r($error);
echo "<br><br>";
}
?>
</body>
</head>
</html>
Isso produzirá a seguinte saída -
Error: LibXMLError Object (
[level] => 3
[code] => 74
[column] => 13
[message] => EndTag: ' trail.xml
[line] => 23
)