i using this code for compress pages
function compressPage($buffer)
{
$search = array(
"/\/\*(.*?)\*\/|[\t\r\n]/s" => "",
"/ +\{ +|\{ +| +\{/" => "{",
"/ +\} +|\} +| +\}/" => "}",
"/ +: +|: +| +:/" => ":",
"/ +; +|; +| +;/" => ";",
"/ +, +|, +| +,/" => ","
);
$buffer = preg_replace(array_keys($search), array_values($search), $buffer);
return $buffer;
}
but when compress my captcha image not be display
why?
can you fix my code?
thank you so much


Sign In
Create Account


Back to top









