使用Tidy在PHP中验证HTML5文档

时间:2016-07-17 15:33:56

标签: php html5 tidy

我正在尝试使用Tidy和PHP清理HTML字符串并创建HTML5文档,但是,我正在创建HTML3.2文档。如图所示,我收到Config: missing or malformed argument for option: doctype错误。我使用Centos 6和Apache 2.2运行PHP版本5.5.35,php_info()显示以下内容:

tidy

Tidy support    enabled
libTidy Release 14 June 2007
Extension Version   2.0 ($Id: e066a98a414c7f79f89f697c19c4336c61bc617b $)

Directive   Local Value Master Value
tidy.clean_output   no value    no value
tidy.default_config no value    no value

如何创建HTML5文档?以下是我的尝试:

<?php
$html = <<<EOD
<p>Hello</p>
<div>
 <p data-customattribute="will be an error">bla</p>
 <p>bla</p>
</div>
<div>
 <p>Hi there!</p>
 <div>
  <p>Opps, a mistake</px>
 </div>
</div>
EOD;
$html="<!DOCTYPE HTML><html><head><title></title></head><body>$html</body></html>";

echo($html."\n\n");

    $config = array(
        'indent' => true,
        'indent-spaces' => 4,
        'doctype' => '<!DOCTYPE HTML>',
    );

$tidy = new tidy;
$tidy->parseString($html, $config, 'utf8');
$tidy->cleanRepair();
print_r($tidy);

输出

<!DOCTYPE HTML><html><head><title></title></head><body><p>Hello</p>
<div>
 <p data-customattribute="will be an error">bla</p>
 <p>bla</p>
</div>
<div>
 <p>Hi there!</p>
 <div>
  <p>Opps, a mistake</px>
 </div>
</div></body></html>

tidy Object
(
    [errorBuffer] => Config: missing or malformed argument for option: doctype
line 9 column 21 - Warning: discarding unexpected </px>
line 3 column 2 - Warning: <p> proprietary attribute "data-customattribute"
    [value] => <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
    <head>
        <title></title>
    </head>
    <body>
        <p>
            Hello
        </p>
        <div>
            <p data-customattribute="will be an error">
                bla
            </p>
            <p>
                bla
            </p>
        </div>
        <div>
            <p>
                Hi there!
            </p>
            <div>
                <p>
                    Opps, a mistake
                </p>
            </div>
        </div>
    </body>
</html>
)

1 个答案:

答案 0 :(得分:1)

  

旧版本的Tidy不支持HTML5文档

支持HTML 5的tidy的第一个版本位于Sep 2015,其中HTML Tidy Advocacy Community Group发布了第一个版本的tidy-html5。

请注意,您使用的是旧版本的整洁版,因此您将无法验证html5文档。

当前预编译的php还没有用tidy-html5编译,所以如果你想使用tidy-html5,你必须自己编译。

这些说明取自tidy-html5 github中的README文件:

  

由于PHP源代码中的API更改,&#34; buffio.h&#34;需要改为&#34; tidybuffio.h&#34;在文件ext / tidy / tidy.c。

中      

那是 - 在配置php之前在php源目录中运行它:

   sed -i 's/buffio.h/tidybuffio.h/' ext/tidy/*.c
     

然后继续(这里只是一个例子,使用你自己的php配置选项):

   ./configure --with-tidy=/usr/local
   make
   make test
   make install