芝麻web文件管理V1.00
编辑当前文件:/home/paymbalq/www/wp-content/plugins/w3-total-cache/lib/Minify/Minify/IgnoredCommentPreserver.php
_replacementHash = 'IgnoredCommentPreserver_' . md5(time()); } public function setIgnoredComments($ignoredComments = array()) { $this->_ignoredComments = $ignoredComments; } public function search($html) { $html = preg_replace_callback('//', 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; } }