php 中需要一次问题

发布于 2024-12-11 16:16:01 字数 229 浏览 0 评论 0原文

我正在使用 xampp 来开发我的 php 应用程序。几天前,我安装了 pear ti 使用数据库抽象。之后,我无法使用父目录中的包含文件,但可以包含子目录中的文件。

这是我检查包含路径时看到的内容

。;E:\xampp\php\PEAR

我尝试使用 set_include_path 将包含路径更改为存储我的文件的位置,然后应用程序无法加载 Pear 文件。

任何帮助表示赞赏。

I am using xampp to develop my php application. Few days back I installed pear ti use DB abstraction. After that, I couldn't use include files from parent directory, however I can include from sub-driectories.

Here is what I see when I check my include path

.;E:\xampp\php\PEAR

I tried changed include path using set_include_path to the location where my files are stored, then the application failed to load Pear files.

Any help appreciated.

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

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

发布评论

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

评论(2

吃素的狼 2024-12-18 16:16:01

添加到包含路径堆栈之前的最简单方法是...

set_include_path(implode(PATH_SEPARATOR, array(
    'path/to/app/includes',
    'path/to/any/other/includes',
    get_include_path()
)));

Easiest way to prepend to the include path stack is...

set_include_path(implode(PATH_SEPARATOR, array(
    'path/to/app/includes',
    'path/to/any/other/includes',
    get_include_path()
)));
仙女山的月亮 2024-12-18 16:16:01

如果你确实想使用 set_include_path,你可以这样做:

set_include_path(get_include_path().PATH_SEPARATOR.'path_to_parent');

使用预定义的常量 DIRECTORY_SEPARATOR 以防你的代码移动到使用不同目录分隔符的服务器。

就个人而言,如果我需要专门为特定站点设置路径,我会尝试在站点的 Web 根目录中的 .htaccess 文件中设置路径。它提供了一个更明显的位置来查找站点范围的配置,例如 include_path。 行:

php_value include_path ".;E:\xampp\php\PEAR;path_to_parent"

以下是您应放入 .htaccess 文件中或 Linux 服务器上的

php_value include_path ".:some_path/PEAR:path_to_parent"

If you really want to use set_include_path, you can do it like this:

set_include_path(get_include_path().PATH_SEPARATOR.'path_to_parent');

Use the predefined constant DIRECTORY_SEPARATOR in case your code moves to a server that uses a different directory separator.

Personally if I needed to set the path specially for a particular site, I would try to set the path in the .htaccess file in the site's web root. It provides a more obvious place to look for site-wide configurations like the include_path. Here is the line you would put in the .htaccess file:

php_value include_path ".;E:\xampp\php\PEAR;path_to_parent"

or on a Linux server:

php_value include_path ".:some_path/PEAR:path_to_parent"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文