php:无法引用当前文件父文件夹子目录!

发布于 2024-12-04 04:37:59 字数 529 浏览 1 评论 0原文

请帮忙!

我的目录结构是这样的:

my_application
my_application/index.php
my_application/images
my_application/phpcode/my_script.php

我在 my_script.php 中有这个代码

<?php
if(file_exists('../images)){
    // do something
}

?>

它在 wamp 中完美运行!

但是当我将其上传到我的服务器(hostgator)时,它不起作用。

在我的服务器中,我不将其上传到根文件夹,而是上传到子文件夹。

rootfolder/folder1/folder2/my_application

据我了解,.. 是指根路径,而不是当前文件。

如何引用当前文件父文件夹的图像?

对不起我的英语。请帮忙!我被困在这一点上。

Please help!

My directory structure is this:

my_application
my_application/index.php
my_application/images
my_application/phpcode/my_script.php

I have this code in my_script.php

<?php
if(file_exists('../images)){
    // do something
}

?>

It works in wamp perfectly!!!

But when I upload it to my server (hostgator), it doesn't work.

In my server I do not upload it to root folder, but to a subfolder.

rootfolder/folder1/folder2/my_application

From what I understand, .. is in reference to the root path, not the current file.

How can I reference the current's file parent's folder images?

Sorry for my English. Please help! I'm stuck on this one.

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

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

发布评论

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

评论(1

乄_柒ぐ汐 2024-12-11 04:37:59

您可以简单地使用 dirname($SCRIPT_FILENAME) 来引用当前脚本的目录。

查看 PHP 常量PHP 保留变量 :)

希望有帮助

You can simpli use dirname($SCRIPT_FILENAME) to reference the direcotry of your current script.

Have a look at PHP Constant and PHP Reserved Variable :)

Hope this help

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