HEX
Server: Apache
System: Linux web2213.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: clinicamaciel (596848)
PHP: 7.3.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,eval,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/clinicamaciel/www/site/wp-content/plugins/w3-total-cache/Util_Content.php
<?php
namespace W3TC;

class Util_Content {
	/**
	 * Check if content is HTML or XML
	 *
	 * @param string  $content
	 * @return boolean
	 */
	static public function is_html( $content ) {
		if ( strlen( $content ) > 1000 ) {
			$content = substr( $content, 0, 1000 );
		}

		if ( strstr( $content, '<!--' ) !== false ) {
			$content = preg_replace( '~<!--.*?-->~s', '', $content );
		}

		$content = ltrim( $content, "\x00\x09\x0A\x0D\x20\xBB\xBF\xEF" );

		return stripos( $content, '<?xml' ) === 0 || stripos( $content, '<html' ) === 0 || stripos( $content, '<!DOCTYPE' ) === 0;
	}

	/**
	 * If content can handle HTML comments, can disable printout per request using filter 'w3tc_can_print_comment'
	 *
	 * @param unknown $buffer
	 * @return bool
	 */
	static public function can_print_comment( $buffer ) {
		if ( function_exists( 'apply_filters' ) )
			return apply_filters( 'w3tc_can_print_comment', Util_Content::is_html( $buffer ) && !defined( 'DOING_AJAX' ) );
		return Util_Content::is_html( $buffer ) && !defined( 'DOING_AJAX' );
	}



	/**
	 * Check if there was database error
	 *
	 * @param string  $content
	 * @return boolean
	 */
	static public function is_database_error( &$content ) {
		return stristr( $content, '<title>Database Error</title>' ) !== false;
	}

	/**
	 * Returns GMT date
	 *
	 * @param integer $time
	 * @return string
	 */
	static public function http_date( $time ) {
		return gmdate( 'D, d M Y H:i:s \G\M\T', $time );
	}

	/**
	 * Escapes HTML comment
	 *
	 * @param string  $comment
	 * @return mixed
	 */
	static public function escape_comment( $comment ) {
		while ( strstr( $comment, '--' ) !== false ) {
			$comment = str_replace( '--', '- -', $comment );
		}

		return $comment;
	}
}