<كاملة PHP XML المرجعي
تعريف والاستخدام
و xml_error_string() وظيفة يحصل على وصف الخطأ محلل XML.
ترجع هذه الوظيفة وصف الخطأ على النجاح، أو FALSE على الفشل.
بناء الجملة
xml_error_string(errorcode)
معامل | وصف |
---|---|
errorcode | مطلوب. يحدد رمز الخطأ في استخدامها. رمز الخطأ هو قيمة الإرجاع من xml_get_error_code() وظيفة |
مثال
<?php
//invalid xml file
$xmlfile = 'test.xml';
$xmlparser = xml_parser_create();
// open a file and read data
$fp = fopen($xmlfile, 'r');
while ($xmldata = fread($fp, 4096))
{
// parse the data chunk
if (!xml_parse($xmlparser,$xmldata,feof($fp)))
{
die( print "ERROR: "
. xml_error_string(xml_get_error_code($xmlparser))
. "<br />"
. "Line: "
. xml_get_current_line_number($xmlparser)
. "<br />"
. "Column: "
. xml_get_current_column_number($xmlparser)
. "<br />");
}
}
xml_parser_free($xmlparser);
?>
الناتج من التعليمات البرمجية أعلاه يمكن أن يكون:
ERROR: Mismatched tag
Line: 5
Column: 41
<كاملة PHP XML المرجعي