CakeFest 2024: The Official CakePHP Conference

tidy::$errorBuffer

tidy_get_error_buffer

(PHP 5, PHP 7, PHP 8, PECL tidy >= 0.5.2)

tidy::$errorBuffer -- tidy_get_error_bufferDevuelve advertencias y errores que ocurrieron al analizar el documento especificado

Descripción

Estilo orientado a objetos (property):

Estilo por procedimientos:

tidy_get_error_buffer(tidy $tidy): string|false

Devuelve advertencias y errores que ocurrieron al analizar el documento especificado.

Parámetros

tidy

El objeto Tidy.

Valores devueltos

Devuelve el búfer de errores como una cadena, o false si el búfer está vacío.

Ejemplos

Ejemplo #1 Ejemplo de tidy_get_error_buffer()

<?php
$html
= '<p>párrafo</p>';

$tidy = tidy_parse_string($html);

echo
tidy_get_error_buffer($tidy);
/* o utilizando OO: */
echo $tidy->errorBuffer;
?>

El resultado del ejemplo sería:

line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 1 column 1 - Warning: inserting missing 'title' element

Ver también

  • tidy_access_count() - Devuelve el número de alertas de accesibilidad Tidy encontradas en un documento dado
  • tidy_error_count() - Devuelve el número de errores Tidy encontrados en un documento dado
  • tidy_warning_count() - Devuelve el número de alertas encontradas en un documendo dado
add a note

User Contributed Notes 1 note

up
5
david dot tulloh at infaze dot com dot au
18 years ago
The following line will convert string error into a two dimensional array containing the components from the error string for each line. It will match Error, Warning, Info and Access error types. You can then do something useful with the output.

<?php
preg_match_all
('/^(?:line (\d+) column (\d+) - )?(\S+): (?:\[((?:\d+\.?){4})]:)
?(.*?)$/m'
, $tidy->errorBuffer, $tidy_errors, PREG_SET_ORDER);
?>

And a small tip, always run the error messages through htmlentities when outputting to convert the tags in the error to a viewable form.
To Top