Skip to content

Instantly share code, notes, and snippets.

@sheikhwaqas
Forked from zmsaunders/filters.php
Created July 21, 2013 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sheikhwaqas/6049824 to your computer and use it in GitHub Desktop.
Save sheikhwaqas/6049824 to your computer and use it in GitHub Desktop.
<?php
### --- Snip --- ###
App::after(function($request, $response)
{
// HTML Minification
if(App::Environment() != 'local')
{
if($response instanceof Illuminate\Http\Response)
{
$output = $response->getOriginalContent();
// Clean comments
$output = preg_replace('/<!--([^\[|(<!)].*)/', '', $output);
$output = preg_replace('/(?<!\S)\/\/\s*[^\r\n]*/', '', $output);
// Clean Whitespace
$output = preg_replace('/\s{2,}/', '', $output);
$output = preg_replace('/(\r?\n)/', '', $output);
$response->setContent($output);
}
}
});
### --- Snip --- ###
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment