如何在 ubuntu 之间编写可移植的 Windows XAMPP 开发 php 代码?
我在 Windows 7 上安装了 ampps(类似于 xampp 服务器) 问题开始是主根文件夹是 d:\var\www\public_html\site1 ,在 Ubuntu 上是 /var/www/public_html/site1
有没有办法让代码在两者上工作而无需每次更改文件夹php 上的名字? IE set_include_path(get_include_path() . PATH_SEPARATOR . $path); ?
另外,如果像 Zend 这样的 IDE 能够识别路径,这样我就可以 CTRL 单击该函数,它将跳转到该路径,那就太好了
i installed ampps (similar to xampp server) on my windows 7
The problems is begins that the home root folder is d:\var\www\public_html\site1 and on Ubuntu its /var/www/public_html/site1
Is there a way to make the code to work on both without change every time the folder names on the php?
i.e.
set_include_path(get_include_path() . PATH_SEPARATOR . $path); ?
Also it will be great if the IDE's like Zend will recognize the path so i can CTRL Click on the function it will can jump to it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不是 100% 确定我是否得到你的要求,但是......
对于项目内部的包含,您通常可以使用相对路径。示例:
I'm not 100% sure whether I'm getting what you're asking, but....
For includes inside a project, you can often use relative paths. Examples: