Просмотр файла inc/foot.php

Размер файла: 483B
  1. <?php
  2. defined('_WBLIB') or die('Restricted access');
  3.  
  4. echo '</div>';
  5. echo "<div class='foot'>&copy; wblib v1.2b<br/>Powered by Wapweb</div>";
  6. if ($set['gzip']) {
  7. $Contents = ob_get_contents();
  8. $gzib_file = strlen($Contents);
  9. $gzib_file_out = strlen(gzcompress($Contents, 9));
  10. $gzib_pro = round(100 - (100 / ($gzib_file / $gzib_file_out)), 1);
  11. echo '[gzip: ' . $gzib_pro . '%]';
  12. }
  13. echo '</body></html>';
  14. ob_end_flush();
  15. ?>