PHP file_put_contents 带有绝对路径?

发布于 2024-10-26 13:28:45 字数 386 浏览 1 评论 0原文

我使用 Wordpress 和 PHP 以及函数 file_put_contents()。 WordPress 文件结构可能因用户而异。

我需要这样称呼它:

file_put_contents(TEMPLATEPATH . '/ps_logo2.png');

或类似的东西:

file_put_contents('C:\wamp\www\domain\modehallen.se/wp-content/uploads/images/ps_logo2.png');

上面的情况是本地主机上的绝对路径(这就是为什么它是 C:)。我需要路径或其他方式来确保文件放置在正确的位置。

这是怎么做到的?

I use Wordpress and PHP and the function file_put_contents(). Wordpress file structure can look different depending on the user.

I need to call it like this:

file_put_contents(TEMPLATEPATH . '/ps_logo2.png');

or the same thing like this:

file_put_contents('C:\wamp\www\domain\modehallen.se/wp-content/uploads/images/ps_logo2.png');

The case above is the absolute path on localhost (that's why it's C:). I need the path or some other way to make sure the file is put in the right place.

How is this done?

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

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

发布评论

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

评论(2

遗心遗梦遗幸福 2024-11-02 13:28:45

怎么样:

file_put_contents($_SERVER['DOCUMENT_ROOT']."path/to/user/wordpress/account/".TEMPLATEPATH.'/ps_logo2.png');

edit

$_SERVER['SCRIPT_NAME'] 给出当前正在处理的脚本的路径。

How about something like:

file_put_contents($_SERVER['DOCUMENT_ROOT']."path/to/user/wordpress/account/".TEMPLATEPATH.'/ps_logo2.png');

edit

$_SERVER['SCRIPT_NAME'] gives the path to the script currently being processed.

十级心震 2024-11-02 13:28:45

realpath() 会告诉您它是否是文件系统中的有效路径。要测试路径是否确实位于给定的“沙箱”路径中,请参阅 这个问题我最近在这里问过。

realpath() will tell you if it is a valid path in the filesystem. To test if the path is actually in a given 'sandbox' path, see the answers to this question I asked here recently.

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