需要有关 PHP“包含”的帮助- 如何将我的网站的路径保存在变量中?

发布于 2024-09-28 06:18:16 字数 1021 浏览 6 评论 0原文

我使用以下方案来包含 PHP 文件:

require($_SERVER['DOCUMENT_ROOT'] . "Path/To/My/Website/Path/To/My/File.php");

我想保存

$_SERVER['DOCUMENT_ROOT'] . 'Path/To/My/Website'

在某个变量中,例如 $my_website,并写入:

require("$my_website/Path/To/My/File.php");

这样,如果我决定更改网站的路径,我将需要仅在我的代码中的一处修改它。

某些 PHP 文件可能会被包含多次并且来自不同的目录级别。例如:

$_SERVER['DOCUMENT_ROOT']
                         Path
                             To
                               My
                                 Website
                                        Dir1
                                            a.php
                                        Dir2
                                            b.php that includes a.php
                                        Dir3
                                            Dir4
                                                c.php that includes a.php

但是,我不知道该怎么做。

请建议。

I use the following scheme to include PHP files:

require($_SERVER['DOCUMENT_ROOT'] . "Path/To/My/Website/Path/To/My/File.php");

I would like to save

$_SERVER['DOCUMENT_ROOT'] . 'Path/To/My/Website'

in some variable, say $my_website, and write:

require("$my_website/Path/To/My/File.php");

This way, if I decide to change the path to my website, I will need to modify it only in one place in my code.

Some PHP files may be included several times and from different directory levels. For example:

$_SERVER['DOCUMENT_ROOT']
                         Path
                             To
                               My
                                 Website
                                        Dir1
                                            a.php
                                        Dir2
                                            b.php that includes a.php
                                        Dir3
                                            Dir4
                                                c.php that includes a.php

However, I can't think how to do this.

Please suggest.

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

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

发布评论

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

评论(3

萌︼了一个春 2024-10-05 06:18:16

使用 包含路径 - 会让你的生活更简单(您甚至可以从 .htaccess 控制它)。

Use include path - will make your life simpler (you can control it even from .htaccess).

甜`诱少女 2024-10-05 06:18:16

我可以想到两种方法来执行此操作:

  1. 创建一个公共文件,包含在所有其他文件中,该文件设置变量 $my_website
  2. 将您的网站路径添加到 include_path 中,这样您就不必使用您的包含您的文件的网站路径(需要“Path/To/My/File.php”;

I can think of two ways of doing this:

  1. Create a common file, included in every other file, that set your variable $my_website
  2. Add your website path to your include_path so you don't have to use you website path at all to include your files (require "Path/To/My/File.php";)
孤独陪着我 2024-10-05 06:18:16

我在 config.php 文件中设置了 BASE_PATH 和 BASE_URI 常量,该文件与脚本位于同一文件夹中,并包含在每个脚本中 (require('config.php')):

define('BASE_PATH', '/filesystem/path/to/application');
define('BASE_URI', '/uri/home');

然后你可以使用:

require(BASE_PATH . '/file.php');

另一个提示 - 如果你有单独的开发和实时站点,你可以将这些定义放在一个开关中:

$mode = 'dev';
switch($mode){
    case 'dev':
        define('BASE_PATH', '/filesystem/path/to/application');
        define('BASE_URI', '/uri/home');
    break;
    case 'live':
        define('BASE_PATH', '/different/path/to/application');
        define('BASE_URI', '/');
    break;
}

I set constants for BASE_PATH and BASE_URI in my config.php file, which is in the same folder as the scripts and gets included in each script (require('config.php')):

define('BASE_PATH', '/filesystem/path/to/application');
define('BASE_URI', '/uri/home');

Then you can use:

require(BASE_PATH . '/file.php');

One further hint - if you have seperate development and live sites, you can put these definitions in a switch:

$mode = 'dev';
switch($mode){
    case 'dev':
        define('BASE_PATH', '/filesystem/path/to/application');
        define('BASE_URI', '/uri/home');
    break;
    case 'live':
        define('BASE_PATH', '/different/path/to/application');
        define('BASE_URI', '/');
    break;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文