Reply to comment

Hmmm

OK my tests.

if(!ob_start('ob_gzhandler'))
 {
    echo 'NO GZ';
    ob_start();
 }
 
echo '<script type="text/javascript">
$(document).ready(fuction() {
});
</script>';
ended up with 93 bytes
 
<?php
if(!ob_start('ob_gzhandler'))
 {
    echo 'NO GZ';
    ob_start();
 }
 
echo '<script type="text/javascript">
$(fuction() {
});
</script>';
Ended up with 77 bytes
 
So you ended up with 16 Bytes worth of savings on this super simple test.

Reply

The content of this field is kept private and will not be shown publicly.
CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
7 + 6 =
Solve this simple math problem and enter the result. E.g. for 1+3, enter 4.