如何使用 php 从 javascript 文件中删除空格?

发布于 2024-10-28 23:15:18 字数 339 浏览 1 评论 0原文

我想压缩js文件并在使用php加载时转换为单行。当我用“preg_replace”删除空格时会发生错误,“;”第 234 行缺失。 原因是有些行不以“;”结尾。例如

          var flag='value'  // here not ended with ';'
          var test='value';

,当我缩小时,它看起来像

          var flag='value' var test='value';

所以发生错误。

如何缩小 js 文件的某些行不以“;”结尾

I want to compress js files and convert into single line at the time of loading using php.when I removes the spaces with 'preg_replace' an error occurs, ';' missing in line 234.
The cause is some lines are not ending with ';'.For eg

          var flag='value'  // here not ended with ';'
          var test='value';

And when I minifies, it looks like

          var flag='value' var test='value';

So error occurs.

How can I minify js files with some lines not ending with ';'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾城月光淡如水﹏ 2024-11-04 23:15:18

您可能希望使用基于 自动分号插入规则

否则,如果你这样做(即使用正则表达式)...

$str = preg_replace('/(?<!;)\s*(\n|\z)/', ";$1", $str);

...你将咀嚼有效的 JavaScript,例如

var a = 'a',
    b = 'bob';

...这将变成...

var a = 'a',;
    b = 'bob';

键盘

有很多现有的 JavaScript 加壳器/压缩器

You would want to use a real parser based on the rules for automatic semi colon insertion.

Otherwise if you do (i.e. use a regex)...

$str = preg_replace('/(?<!;)\s*(\n|\z)/', ";$1", $str);

...you are going to munch valid JavaScript, e.g.

var a = 'a',
    b = 'bob';

...which will become...

var a = 'a',;
    b = 'bob';

CodePad.

There are plenty of existing JavaScript packers/minifiers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文