在源上传时运行脚本

发布于 2024-09-29 23:36:10 字数 251 浏览 5 评论 0原文

我正在使用 Netbeans 6.9 来开发 PHP 代码;测试在我的 PC 上本地进行(XAMPP);完成后,使用 Netbeans 上传工具将代码上传到生产 Web 服务器。

我记得读过有关在“构建”项目时运行脚本的 Netbeans 功能,并寻找有关它的入门知识。 特别是,在将文件上传到生产服务器之前,我正在寻找一些方法来实现以下目标: - 从 PHP 源代码中删除注释 - 缩小 PHP - 缩小 Javascript 和CSS

有人能启发我吗?

I'm using Netbeans 6.9 to develop PHP code; testing happens locally on my PC (XAMPP); once done code is uploaded using Netbeans upload facility to the production web server.

I recall reading about Netbeans capabilities running scripts when "building" the project, and looking for a primer about it.
Particularly I'm looking for some ways to achieve the following, right before uploading files to the production server:
- strip comments from PHP sources
- minify PHP
- minify Javascript & CSS

Can someone enlighten me?

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

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

发布评论

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

评论(1

皓月长歌 2024-10-06 23:36:10

我认为您的目标可能是像 Apache Ant 这样的工具。它运行带有多个目标的 XML,这些目标通常只是一些 shell 脚本。

所以这意味着;

  • 设置 Apache Ant
  • 找到一些 CLI/shell 脚本来完成您提到的工作
  • 创建一个 ANT 构建文件,最后通过 FTP
  • 上传 运行 ANT 文件

有关 Apache Ant 的更多信息; http://ant.apache.org/

I think what you may be aiming for is a tool like Apache Ant. It runs an XML with several targets which usually are nothing more than some shell scripts.

So this means;

  • Setup Apache Ant
  • Find some CLI/shell scripts to do the jobs you mention
  • Create an ANT build file with the FTP upload in the end
  • Run the ANT file

More info on Apache Ant; http://ant.apache.org/

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