<?php
ob_start("ob_gzhandler");
?>
<script type="text/javascript" src="Util.js"></script>
<script type="text/javascript" src="connection.js"></script>
....
<?php ob_end_flush(); ?>
Will the files included by or also be compressed?
|
|
Will the files included by or also be compressed?
|
||
|
|
|
|
Not in the HTML, no. Those files are request by the browser and the PHP script has no direct relationship with them. You would have to manually rewrite those javascript files to a PHP script that preforms the same action. |
||||
|
|
|
When you use an output buffering filter such as However, from what you have shown, it cannot be determined if (Also, make sure the browser claims to accept gzipped content, and that you tell the browser you are sending gzipped content. You could send gibberish to a browser on accident!) Short answer: no |
|||
|
|