/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/libxml/tests/002.phpt
87 строк
2 KB
Nikita Popov
Migrate SKIPIF -> EXTENSIONS (#7138)
11 июн 2021, 12:57
Не верифицирован
11 июн 2021, 12:57
7485978
Код
Авторство
О чём код?
--TEST-- libxml_get_errors() --EXTENSIONS-- simplexml --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