如何压缩/缩小嵌入了 php 的 javascript

发布于 2024-10-20 20:24:59 字数 435 浏览 1 评论 0原文

我的 jquery 脚本中有一些 php 来启动变量等。我试图使用像 minify 这样的东西来压缩它并阻止窥探。 php 引起了问题。有人做过类似的事情吗?

这里只是我的 php-infused javascript 的一个例子:

    $('input[name=type]:radio').filter('[value=<?=$type?>]').attr('checked', true);
    $('input[name=cert]:checkbox').filter('[value=<?=$cert?>]').attr('checked', true);
    $('input[name=gauge]:checkbox').filter('[value=<?=$gauge?>]').attr('checked', true);

My jquery scripts have some php in them to initiate variables, etc. I'm trying to use something like minify to compress it and deter prying eyes. The php is causing issues. Anybody done anything similar?

here is just an example of my php-infused javascript:

    $('input[name=type]:radio').filter('[value=<?=$type?>]').attr('checked', true);
    $('input[name=cert]:checkbox').filter('[value=<?=$cert?>]').attr('checked', true);
    $('input[name=gauge]:checkbox').filter('[value=<?=$gauge?>]').attr('checked', true);

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

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

发布评论

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

评论(3

小姐丶请自重 2024-10-27 20:24:59

PHP试图通过这种方式完全分离JavaScript。在 PHP 文件中,您保留如下值:

file.php:

<html>
<head>...</head>
<body>
...
<input type="hidden" id ="value_type" value="<?=$type?>" />
<input type="hidden" id ="value_cert" value="<?=$cert?>" />
<input type="hidden" id ="value_gauge" value="<?=$gauge?>" />
...
</body>
</html>

file.js:

$(function() {

  $.data_values = {

     "type": $("#value_type").val(),
     "cert": $("#value_cert").val(),
     "gauge": $("#value_gauge").val()

  };

});

当您必须使用这些值时:

$('input[name=type]:radio').filter('[value="'+$.data_values.type +'"]').attr('checked', true);
$('input[name=cert]:checkbox').filter('[value="'+$.data_values.cert +'"]').attr('checked', true);
$('input[name=gauge]:checkbox').filter('[value="'+$.data_values.gauge +'"]').attr('checked', true);

PHP attempts to completely separate the JavaScript in this way. In your PHP file you keep the values as follows:

file.php:

<html>
<head>...</head>
<body>
...
<input type="hidden" id ="value_type" value="<?=$type?>" />
<input type="hidden" id ="value_cert" value="<?=$cert?>" />
<input type="hidden" id ="value_gauge" value="<?=$gauge?>" />
...
</body>
</html>

file.js:

$(function() {

  $.data_values = {

     "type": $("#value_type").val(),
     "cert": $("#value_cert").val(),
     "gauge": $("#value_gauge").val()

  };

});

when you have to use the values:

$('input[name=type]:radio').filter('[value="'+$.data_values.type +'"]').attr('checked', true);
$('input[name=cert]:checkbox').filter('[value="'+$.data_values.cert +'"]').attr('checked', true);
$('input[name=gauge]:checkbox').filter('[value="'+$.data_values.gauge +'"]').attr('checked', true);
沙与沫 2024-10-27 20:24:59

Minify 不适用于 PHP。如果您必须将 PHP 保留在那里,但没有太多,您可以将其替换为已知标签(即“ABCDE”、“12345”),然后缩小它,然后再次用您的 PHP 替换这些标签。

Minify won't work with PHP. If you have to keep the PHP in there are there isn't too much of it, you could replace it with a known tag (i.e. 'ABCDE', '12345'), then minify it, then substitute the tags with your PHP again.

等待圉鍢 2024-10-27 20:24:59

当您的所有 PHP 都在 JavaScript 字符串中(如示例代码中)时,任何有价值的缩小工具都应该可以正常工作。例如,如果您想使用 UglifyJS,那么您可以在线尝试,看看它是否适用于您的代码。

When all of your PHP is in JavaScript strings like in your example code then any minification tool worth its salt should work just fine. If you want to use UglifyJS for example, then you can try it online and see if it works for your code.

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