passphrase

HTML and php optimizer


Remove comments
Remove white spaces and line breaks
Optimize PHP variables



How it works?

Remove comments
This feature removes comments like "//" or "/*". It will not remove comments like "<!-- comment -->", but I will work on it in near future.

Remove white spaces and line breaks
Removes unnecessary white baps between code lines and extra lines between text parts. So after usage check if everything is in place on your site.
It also removes new lines, so your code will appear in one big line in text redactor.

Optimize PHP variables
This feature shortens all php variables.
For example:

<?php
echo $helloworld;
?>

after optimization:
<?php
echo $a;
?>

 it works only between "<?php" and "?>" tags, and it won't optimize words like $_POST.

No comments:

Post a Comment