在源上传时运行脚本
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您的目标可能是像 Apache Ant 这样的工具。它运行带有多个目标的 XML,这些目标通常只是一些 shell 脚本。
所以这意味着;
有关 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;
More info on Apache Ant; http://ant.apache.org/