私はyoutubeから単純なoembedURLを解析し、それらをxhtmlに変換していますが、一部のhtmlは正しく整理されていません(私はそう信じています)。有効なxhtmlはallowFullScreen="true"?????である必要があります。これが正しければ、それを行う整頓されたモジュールはありますか?「浄化装置」ルートに行かなければなりませんか?
YouTubeからの入力:
<iframe allowfullscreen ... ></iframe>
整理後の最終出力:
<iframe allowfullscreen="" ...></iframe>
PHP Tidy:
$tidy = new \tidy();
$config = array(
'show-body-only' => true,
'char-encoding' => 'utf8'
);
$output = $tidy -> repairString($data['html'], $config, 'UTF8');