An alternative to php tidy?

前端 未结 4 1746
眼角桃花
眼角桃花 2020-12-09 22:15

I use php tidy to process html input in my database,

$fragment = tidy_repair_string($dom->saveHTML(), array(\'output-xhtml\'=>1,\'show-body-only\'=>         


        
4条回答
  •  难免孤独
    2020-12-09 22:22

    Or simply pass through the DOMDocument object:

    $dirty = "some content"
    $x = new DOMDocument;
    $x->loadHTML($dirty);
    $clean = $x->saveXML();
    

提交回复
热议问题