我如何访问父文件夹 php 中的文件夹或文件

发布于 2024-09-03 00:14:20 字数 50 浏览 4 评论 0原文

我想要一个共享文件夹,其中包含子文件夹内的 html 页面可以访问的图像。(子文件夹)

i want a shared folder which contains images to be accessed by html pages inside sub folders.(child folders)

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

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

发布评论

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

评论(5

巡山小妖精 2024-09-10 00:14:20

如果您的意思是您的 html 文件夹和 images 文件夹是同级文件夹,那么您可能正在寻找 .. 目录...嗯,东西。

你的文件看起来像这样:

/www
    /html
        index.php
    /images
        myimage.png

写一个这样的 img 标签:

<img src="../images/myimage.png" />

If you mean your html folder and images folder are siblings, you're probably looking for the .. directory... um, thingy.

Your files look like:

/www
    /html
        index.php
    /images
        myimage.png

Write an img tag like this:

<img src="../images/myimage.png" />
瑾兮 2024-09-10 00:14:20

在您的网站内创建一个文件夹并将图像放入其中。

Make a folder inside your website and put images into it.

明月松间行 2024-09-10 00:14:20

基本上,有两种链接到资源 (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):

  • Use an absolute link: http://www.yourserver.com/path/to/resource.jpg
  • Use a relative link: for example, to go from http://www.yourserver.com/path/from/page.html to http://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 :)

风为裳 2024-09-10 00:14:20

如果我没猜错的话,你有一个文件夹,里面有很多文件夹,里面有很多文件夹,你有html页面,你希望页面访问第一个文件夹...

main_folder

pic.png

pic.gif

pic.jpg

sub_folder

html_page.php

只是当您从 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

html_page.php

just use ../pic.png when you call the image file from the html_page.php

Was this what you where looking for ?

乙白 2024-09-10 00:14:20

您可以使用 dirname< 获取当前文件的目录/a> 功能:

dirname(__FILE__)

如果您想要父目录,可以使用“..”,因此:

$current_dir = dirname(__FILE__);
$parent_dir = $current_dir.'/..';

You can get the directory of the current file with the dirname funciton:

dirname(__FILE__)

If you want the parent directory you can use '..' thus:

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