| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/ict/wp-content/plugins/w3-total-cache/lib/Minify/Minify/ |
Upload File : |
<?php
namespace W3TCL\Minify;
class Minify_IgnoredCommentPreserver {
protected $_replacementHash = '';
protected $_ignoredComments = array();
protected $_placeholders = array();
public function __construct() {
$this->_replacementHash = 'IgnoredCommentPreserver_' . md5(time());
}
public function setIgnoredComments($ignoredComments = array()) {
$this->_ignoredComments = $ignoredComments;
}
public function search($html) {
$html = preg_replace_callback('/<!--[\\s\\S]*?-->/',
array($this, '_callback'),
$html);
return $html;
}
public function replace($html) {
$html = str_replace(array_keys($this->_placeholders),
array_values($this->_placeholders),
$html);
return $html;
}
protected function _callback($match) {
list($comment) = $match;
if ($this->_isIgnoredComment($comment)) {
return $this->_reservePlace($comment);
}
return $comment;
}
protected function _isIgnoredComment(&$comment) {
foreach ($this->_ignoredComments as $ignoredComment) {
if ( ! empty( $ignoredComment ) && stristr($comment, $ignoredComment ) !== false) {
return true;
}
}
return false;
}
protected function _getPlaceholder() {
return '%%' . $this->_replacementHash . '_' . count($this->_placeholders) . '%%';
}
protected function _reservePlace(&$content) {
$placeholder = $this->_getPlaceholder();
$this->_placeholders[$placeholder] = &$content;
return $placeholder;
}
}