Dreamweaver 与 PHP 的集成
这是我的第一个 PHP 项目,我还在学习阶段。设计师正在使用 Dreamweaver 来设计该网站。作为一名开发人员,我只了解代码并且对在 Eclipse 上工作感到满意。
我们如何集成该项目,我们都在使用不同的软件/IDE 查看相同的文件。
其次,我将在 Windows 上使用 XAMPP,但我很困惑设计师将如何使用 apache。
我正在寻找当开发人员使用 eclipse 和设计师使用 Dreamweaver 时使用什么工具和实践?
Its my first project with PHP, I am still learning phase. Designer is working on dreamweaver to design the web site. As I developer I only understand code and feel comfortable with working on eclipse.
How can we integrate the project, that we both are looking at the same file but with different software/IDE.
Secondly , I will be using XAMPP for Windows but I am confused how the designer will use apache.
All I am looking for what to tools and practices are used when Dev's are working eclipse and designer are working Dreamweaver ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你应该将代码与 html 分开放在不同的文件中。你研究过mvc架构吗?
如果您使用 mvc 架构或类似的 html 和 php 源文件分离,那么你们无论如何都不应该真正处理相同的文件。
如果您选择不这样做,请设置一个 svn(颠覆)服务器,以便你们可以彼此独立地处理您的项目,但保持同步。任何人使用什么ide都不重要。 Dreamweaver 具有使用 Subversion 进行源代码控制、测试和生产服务器设置的功能,以便于设置/获取。您基本上将其设置为与 ftp 相同。
you should keep you code separated from the html in different files. have you looked into mvc architecture?
if you use an mvc architecture or similar separation of html and php source files, you guys should never really be working on the same files anyways.
if you choose not to, set up an svn (subversion) server so that you guys can work on your project independently of one another but stay in sync. it shouldn't matter what ide anyone uses. dreamweaver has functionality to use subversion for source control, test and production server setup for easy sets/gets. you basically set it up the same as an ftp.