0

私のファイル構造は次のようなものです:

filethatineed.html
folder
    index.php

index.php で、HTML ファイルを参照したい。

同じディレクトリにあるとしたら、次のようになります。

<?php include('filethatineed.html');?>

より高いディレクトリにあるときにファイルを含めるようにこれを変更するにはどうすればよいですか?

4

4 に答える 4

1

を使用しinclude('../filethatineed.html')ます。

于 2013-09-26T11:53:45.173 に答える
1

For file のような相対パスパターンを現在のフォルダーのすぐ上に使用してから、

<?php include('../filethatineed.html');?>

于 2013-09-26T11:54:02.367 に答える
1

ファイルを含めるには、次の方法があります

1. include($_SERVER['DOCUMENT_ROOT']."/filethatineed.html");
2. include(__DIR__."../filethatineed.html");
3. include('../filethatineed.html');
于 2013-09-26T12:18:29.900 に答える