如何在 ubuntu 之间编写可移植的 Windows XAMPP 开发 php 代码?

发布于 2024-12-09 12:51:45 字数 307 浏览 1 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(1

奈何桥上唱咆哮 2024-12-16 12:51:45

我不是 100% 确定我是否得到你的要求,但是......

有没有一种方法可以让代码在两者上工作而无需每次更改 php 上的文件夹名称?

对于项目内部的包含,您通常可以使用相对路径。示例:

include("include.php"); // file inside the current folder
include("../include.php"); // file inside the parent folder
include("../includes/include.php"); // file inside the includes folder 
                                    // that is located in the parent folder 

I'm not 100% sure whether I'm getting what you're asking, but....

Is there a way to make the code to work on both without change every time the folder names on the php?

For includes inside a project, you can often use relative paths. Examples:

include("include.php"); // file inside the current folder
include("../include.php"); // file inside the parent folder
include("../includes/include.php"); // file inside the includes folder 
                                    // that is located in the parent folder 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文