PHP:让文件返回自己的目录

发布于 2024-11-03 21:38:41 字数 48 浏览 0 评论 0原文

我无法在我的在线服务器上找到正确的目录。 是否有一个函数可以返回存储文件的文件夹?

I am having trouble finding the rigth directory on my online server.
is there a function that returns the folder the file is stored in?

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

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

发布评论

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

评论(4

夜灵血窟げ 2024-11-10 21:38:41

在 PHP>=5.3 中使用 __DIR__ 并在使用 dirname(__FILE__) 之前

http://php.net/constants.predefined

http://php.net/dirname

In PHP>=5.3 use __DIR__ and before use dirname(__FILE__)

http://php.net/constants.predefined

http://php.net/dirname

老旧海报 2024-11-10 21:38:41

使用魔法常量 __DIR__

您可以在此处阅读有关魔法常量的更多信息:http://php.net/manual/en/language.constants.predefined.php

Use the magic constant __DIR__

You can read more about the magic constants here: http://php.net/manual/en/language.constants.predefined.php

唐婉 2024-11-10 21:38:41

http://php.net/manual/en/function.getcwd.php

成功时返回当前工作目录,失败时返回 FALSE。

http://php.net/manual/en/function.getcwd.php

Returns the current working directory on success, or FALSE on failure.

奈何桥上唱咆哮 2024-11-10 21:38:41

dirname() 函数将返回路径的目录部分。例如,dirname('foo/bar/baz.php') 将返回foo/bar

对于不支持 __DIR__ 魔术常量的 PHP 版本(5.2.x 及以下版本),这通常与 __FILE__ 魔术常量结合使用:

require_once dirname(__FILE__) . '/../classes/Class.php';

The dirname() function will return the directory portion of a path. For example, dirname('foo/bar/baz.php') will return foo/bar.

This is often used in conjunction with the __FILE__ magic constant for versions of PHP that do not support the __DIR__ magic constant (versions 5.2.x and below):

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