tidy::diagnose

tidy_diagnose

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

tidy::diagnose -- tidy_diagnoseパース、修正されたマークアップの診断を行う

説明

オブジェクト指向型

tidy::diagnose ( void ) : bool

手続き型

tidy_diagnose ( tidy $object ) : bool

与えられた Tidy オブジェクト object に対して診断テストを実行し、 エラーバッファにドキュメントについての情報を追加します。

パラメータ

object

Tidy オブジェクト。

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

例1 tidy::diagnose() の例

<?php

$html 
= <<< HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<p>paragraph</p>
HTML;

$tidy tidy_parse_string($html);
$tidy->cleanRepair();

// 2 つの出力の違いに注意
echo $tidy->errorBuffer "\n";

$tidy->diagnose();
echo 
$tidy->errorBuffer;

?>

上の例の出力は以下となります。

line 4 column 1 - Warning: <p> isn't allowed in <head> elements
line 4 column 1 - Warning: inserting missing 'title' element
line 4 column 1 - Warning: <p> isn't allowed in <head> elements
line 4 column 1 - Warning: inserting missing 'title' element
Info: Doctype given is "-//W3C//DTD XHTML 1.0 Strict//EN"
Info: Document content looks like XHTML 1.0 Strict
2 warnings, 0 errors were found!

参考

  • tidy::errorBuffer()