我如何访问父文件夹 php 中的文件夹或文件
我想要一个共享文件夹,其中包含子文件夹内的 html 页面可以访问的图像。(子文件夹)
i want a shared folder which contains images to be accessed by html pages inside sub folders.(child folders)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果您的意思是您的 html 文件夹和 images 文件夹是同级文件夹,那么您可能正在寻找
..
目录...嗯,东西。你的文件看起来像这样:
写一个这样的 img 标签:
If you mean your html folder and images folder are siblings, you're probably looking for the
..
directory... um, thingy.Your files look like:
Write an img tag like this:
在您的网站内创建一个文件夹并将图像放入其中。
Make a folder inside your website and put images into it.
基本上,有两种链接到资源 (page/script/image/whatever) 的方法:
http://www.yourserver.com/path/to/resource.jpg
http://www.yourserver.com/path/from/page.html
转到http://www.yourserver.com/path /to/resource.jpg
,您使用../to/resource.jpg
因此,只需将图像放在可公开访问的文件夹中,并使用这两种方法之一引用它们即可。
或者完善你的问题:)
Basically, there are two ways of linking to a resource (page/script/image/whatever):
http://www.yourserver.com/path/to/resource.jpg
http://www.yourserver.com/path/from/page.html
tohttp://www.yourserver.com/path/to/resource.jpg
, you use../to/resource.jpg
So just put your images on a publicly accessibly folder, and refer to them using one of those two methods.
Or refine your question :)
如果我没猜错的话,你有一个文件夹,里面有很多文件夹,里面有很多文件夹,你有html页面,你希望页面访问第一个文件夹...
main_folder
pic.png
pic.gif
pic.jpg
sub_folder
只是当您从 html_page.php 调用图像文件时使用 ../pic.png
这是您在寻找的东西吗?
If I got it right, you have a folder with many folders inside, and inside does many folder you have html pages, and you want does pages to access the first folder...
main_folder
pic.png
pic.gif
pic.jpg
sub_folder
just use ../pic.png when you call the image file from the html_page.php
Was this what you where looking for ?
您可以使用 dirname< 获取当前文件的目录/a> 功能:
如果您想要父目录,可以使用“..”,因此:
You can get the directory of the current file with the dirname funciton:
If you want the parent directory you can use '..' thus: