tidy::getStatus
tidy_get_status
(PHP 5, PHP 7, PHP 8, PECL tidy >= 0.5.2)
tidy::getStatus -- tidy_get_status — 指定したドキュメントのステータスを取得する
説明
オブジェクト指向型
手続き型
指定した Tidy オブジェクト tidy
のステータスを返します。
戻り値
エラー/警告が発生しなかった場合は 0、 警告やアクセイシビリティエラーの場合は 1、 エラーの場合は 2 を返します。
例
例1 tidy::getStatus() の例
<?php
$html = '<p>paragraph</i>';
$tidy = new tidy();
$tidy->parseString($html);
$tidy2 = new tidy();
$html2 = '<bogus>test</bogus>';
$tidy2->parseString($html2);
echo $tidy->getStatus(); //1
echo $tidy2->getStatus(); //2
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google