![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/hessa.corals.io/wp-content/plugins/w3-total-cache/lib/Minify/Minify/ |
<?php namespace W3TCL\Minify; class Minify_HTMLTidy { public static function minify($content, $options = array()) { $options = array_merge(array( 'clean' => false, 'hide-comments' => true, 'wrap' => 0, 'input-encoding' => 'utf8', 'output-encoding' => 'utf8', 'preserve-entities' => true ), $options, array( 'show-errors' => 0, 'show-warnings' => false, 'force-output' => true, 'tidy-mark' => false, 'output-xhtml' => false, )); $tidy = new \tidy(); $tidy->parseString($content, $options); $tidy->cleanRepair(); $content = $tidy->value; return $content; } public static function minifyXhtml($html, $options = array()) { $options = array_merge($options, array( 'output-xhtml' => true )); return self::minify($html, $options); } public static function minifyXml($xml, $options = array()) { $options = array_merge($options, array( 'input-xml' => true, 'output-xml' => true, 'add-xml-decl' => true )); return self::minify($xml, $options); } }