array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'tidy.props.errorbuffer.php', 1 => 'tidy::$errorBuffer', 2 => 'Return warnings and errors which occurred parsing the specified document', ), 'up' => array ( 0 => 'class.tidy.php', 1 => 'tidy', ), 'prev' => array ( 0 => 'tidy.diagnose.php', 1 => 'tidy::diagnose', ), 'next' => array ( 0 => 'tidy.getconfig.php', 1 => 'tidy::getConfig', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/tidy/tidy/errorbuffer.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 5, PHP 7, PHP 8, PECL tidy >= 0.5.2)
tidy::$errorBuffer -- tidy_get_error_buffer — Return warnings and errors which occurred parsing the specified document
面向对象风格 (property):
过程化风格:
Returns warnings and errors which occurred parsing the specified document.
Returns the error buffer as a string, or false
if the buffer is empty.
示例 #1 tidy_get_error_buffer() example
<?php
$html = '<p>paragraph</p>';
$tidy = tidy_parse_string($html);
echo tidy_get_error_buffer($tidy);
/* or in OO: */
echo $tidy->errorBuffer;
?>
以上示例会输出:
line 1 column 1 - Warning: missing <!DOCTYPE> declaration line 1 column 1 - Warning: inserting missing 'title' element