tidy::cleanRepair
tidy_clean_repair
(PHP 5, PHP 7, PHP 8, PECL tidy >= 0.5.2)
tidy::cleanRepair -- tidy_clean_repair — パースされたマークアップに設定に基く誤りの修正を行う
説明
オブジェクト指向型
手続き型
この関数は、与えられた Tidy オブジェクト tidy
を修正します。
例
例1 tidy::cleanrepair() の例
<?php
$html = '<p>test</I>';
$tidy = tidy_parse_string($html);
$tidy->cleanRepair();
echo $tidy;
?>
上の例の出力は以下となります。
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> <html> <head> <title></title> </head> <body> <p>test</p> </body> </html>
参考
- tidy::repairFile() - ファイルを修正し、それを文字列として返す
- tidy::repairString() - 別途提供される設定ファイルを使用して文字列を修正する
+add a note
User Contributed Notes 1 note
steven at nevvix dot com ¶
6 years ago
<?php
/**
* UTF-8 HTML5-compatible Tidy
*
* @param string $html
* @param array $config
* @param string $encoding
* @link http://tidy.sourceforge.net/docs/quickref.html
*/
function tidy_html5($html, array $config = [], $encoding = 'utf8') {
if (!extension_loaded('tidy')) {
throw new \Exception("Tidy extension is missing!");
return;
}
$config += [
'clean' => TRUE,
'doctype' => 'omit',
'indent' => 2, // auto
'output-html' => TRUE,
'tidy-mark' => FALSE,
'wrap' => 0,
// HTML5 tags
'new-blocklevel-tags' => 'article aside audio bdi canvas details dialog figcaption figure footer header hgroup main menu menuitem nav section source summary template track video',
'new-empty-tags' => 'command embed keygen source track wbr',
'new-inline-tags' => 'audio command datalist embed keygen mark menuitem meter output progress source time video wbr',
];
$html = tidy_parse_string($html, $config, $encoding);
tidy_clean_repair($html);
return '<!DOCTYPE html>' . PHP_EOL . $html;
}
$html = '<z/><p><a href="#">Link</a></p><p>Second para</p>';
echo tidy_html5($html);
Output:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<p><a href="#">Link</a></p>
<p>Second para</p>
</body>
</html>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google