PHP - função libxml_use_internal_errors ()
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.
Sempre que houver um erro de sintaxe no arquivo ou string XML fornecido. PHP gera um erro. Usando olibxml_use_internal_errors() você pode evitar a geração de erros e buscá-los no programa conforme necessário, usando as respectivas funções.
Sintaxe
SimpleXMLElement:: libxml_get_errors();
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | use_errors (Optional) Este é um valor booleano se você passar TRUE, o tratamento de erros é habilitado e desabilitado quando passa FALSE. |
Valores Retornados
Esta função retorna o valor anterior do parâmetro use_errors.
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_use_internal_errors ().
<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) {
$errors = libxml_get_errors();
print("Errors: ");
print_r($errors);
echo "<br><br>";
}
?>
</body>
</head>
</html>
Isso produzirá o seguinte resultado -
Errors: Array (
[0] => LibXMLError Object (
[level] => 3 [code] => 76
[column] => 30
[message] => Opening and ending tag mismatch: Employee line 2 and Employeee
[file] =>
[line] => 6
)
[1] => LibXMLError Object (
[level] => 3
[code] => 76
[column] => 31
[message] => Opening and ending tag mismatch: City line 2 and test
[file] =>
[line] => 11
)
)
Errors: Array (
[0] => LibXMLError Object (
[level] => 3
[code] => 76
[column] => 30
[message] => Opening and ending tag mismatch: Employee line 2 and Employeee
[file] =>
[line] => 6
)
)
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
)