php:无法引用当前文件父文件夹子目录!
请帮忙!
我的目录结构是这样的:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以简单地使用
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