libxml_get_errors
エラー配列を取得する
&reftitle.description;
arraylibxml_get_errors
エラー配列を取得します。
&reftitle.parameters;
&no.function.parameters;
&reftitle.returnvalues;
エラーがバッファにある場合に LibXMLError オブジェクトの配列、
それ以外の場合に空の配列を返します。
&reftitle.examples;
libxml_get_errors の例
この例は、簡単な libxml エラーハンドラを構築する方法を示すものです。
PHP: Behind the Parser
XML;
$doc = simplexml_load_string($xmlstr);
$xml = explode("\n", $xmlstr);
if ($doc === false) {
$errors = libxml_get_errors();
foreach ($errors as $error) {
echo display_xml_error($error, $xml);
}
libxml_clear_errors();
}
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";
}
?>
]]>
&example.outputs;
PHP: Behind the Parser
----------------------------------------------^
Fatal Error 76: Opening and ending tag mismatch: titles line 4 and title
Line: 4
Column: 46
--------------------------------------------
]]>
&reftitle.seealso;
libxml_get_last_error
libxml_clear_errors