Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5841889
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T11:56:51+00:00 2026-05-22T11:56:51+00:00

Can you post a regex search and replacement in php for minifying/compressing javascript? For

  • 0

Can you post a regex search and replacement in php for minifying/compressing javascript?

For example, here’s a simple one for CSS

  header('Content-type: text/css');
  ob_start("compress");
  function compress($buffer) {
    /* remove comments */
    $buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer);
    /* remove tabs, spaces, newlines, etc. */
    $buffer = str_replace(array("\r\n", "\r", "\n", "\t", '  ', '    ', '    '), '', $buffer);
    return $buffer;
  }

  /* put CSS here */

  ob_end_flush();

And here’s one for html:

<?php
/* Minify All Output - based on the search and replace regexes. */
function sanitize_output($buffer)
{
    $search = array(
        '/\>[^\S ]+/s', //strip whitespaces after tags, except space
        '/[^\S ]+\</s', //strip whitespaces before tags, except space
        '/(\s)+/s'  // shorten multiple whitespace sequences
        );
    $replace = array(
        '>',
        '<',
        '\\1'
        );
  $buffer = preg_replace($search, $replace, $buffer);
    return $buffer;
}
ob_start("sanitize_output");
?>
<html>...</html>

But what about one for javascript?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T11:56:52+00:00Added an answer on May 22, 2026 at 11:56 am

    A simple regex for minifying/compressing javascript is unlikely to exist anywhere. There are probably several good reasons for this, but here are a couple of these reasons:

    Line breaks and semicolons
    Good javascript minifiers remove all extra line breaks, but because javascript engines will work without semicolons at the end of each statement, a minifier could easily break this code unless it is sophisticated enough to watch for and handle different coding styles.

    Dynamic Language Constructs
    Many of the good javascript minifiers available will also change the names of your variables and functions to minify the code. For instance, a function named ‘strip_white_space’ that is called 12 times in your file might be renamed simple ‘a’, for a savings of 192 characters in your minified code. Unless your file has a lot of comments and/or whitespace, optimizations like these are where the majority of your filesize savings will come from.

    Unfortunately, this is much more complicated than a simple regex should try to handle. Say you do something as simple as:

    var length = 12, height = 15;
        // other code that uses these length and height values
    
    var arr = [1, 2, 3, 4];
    for (i = (arr.length - 1); i >= 0; --i) {
        //loop code
    }
    

    This is all valid code. BUT, how does the minifier know what to replace? The first “length” has “var” before it (but it doesn’t have to), but “height” just has a comma before it. And if the minifier is smart enough to replace the first “length” properly, how smart does it have to be know NOT to change the word “length” when used as a property of the array? It would get even more complicated if you defined a javascript object where you specifically defined a “length” property and referred to it with the same dot-notation.

    Non-regex Options Several projects exist to solve this problem using more complex solutions than just a simple regex, but many of them don’t make any attempt to change variable names, so I still stick with Dean Edwards’ packer or Douglas Crockford’s JSMin or something like the YUI Compressor.

    PHP implementation of Douglas Crockford’s JSMin

    https://github.com/mrclay/minify

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can some one post an example of using syslog outputter for log4r, I am
Can anyone post an example of Aspect-oriented programming (AOP) that is not logging? I've
Can someone post any simple explanation of cache aware algorithms? There are lot of
The Flex 3 docs are fairly basic. Can someone post a more complete example
I can get the [a-z0-9]* part from [a-z0-9]*@example.com with regex but I want to
See my post here Regex for at least 8 + upper and lower+numbers or
I run a website where users can post items (e.g. pictures). The items are
I have a view user control that can post form. This control can be
I have a site where users can post stuff (as in forums, comments, etc)
Is there any way instead of a JS hack where I can post from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.