PHP file_put_contents 带有绝对路径?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
怎么样:
edit
$_SERVER['SCRIPT_NAME']
给出当前正在处理的脚本的路径。How about something like:
edit
$_SERVER['SCRIPT_NAME']
gives the path to the script currently being processed.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.