| 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 : C:/Old Sites/ict/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
namespace W3TC;
class UserExperience_LazyLoad_Mutator_Unmutable {
private $placeholders = array();
private $placeholder_base = '';
public function __construct() {
$this->placeholder_base = 'w3tc_lazyload_' .
md5( isset( $_SERVER['REQUEST_TIME'] ) ? sanitize_text_field( wp_unslash( $_SERVER['REQUEST_TIME'] ) ) : '' ) . '_';
}
public function remove_unmutable( $buffer ) {
// scripts
$buffer = preg_replace_callback(
'~<script(\b[^>]*)>(.*?)</script>~is',
array( $this, 'placeholder' ), $buffer );
// styles
$buffer = preg_replace_callback(
'~\s*<style(\b[^>]*)>(.*?)</style>~is',
array($this, 'placeholder'), $buffer);
return $buffer;
}
public function restore_unmutable( $buffer ) {
return str_replace(
array_keys( $this->placeholders ),
array_values( $this->placeholders ),
$buffer
);
}
public function placeholder( $matches ) {
$key = '{' .$this->placeholder_base . count( $this->placeholders ) . '}';
$this->placeholders[$key] = $matches[0];
return $key;
}
}