php 中需要一次问题
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加到包含路径堆栈之前的最简单方法是...
Easiest way to prepend to the include path stack is...
如果你确实想使用 set_include_path,你可以这样做:
使用预定义的常量 DIRECTORY_SEPARATOR 以防你的代码移动到使用不同目录分隔符的服务器。
就个人而言,如果我需要专门为特定站点设置路径,我会尝试在站点的 Web 根目录中的 .htaccess 文件中设置路径。它提供了一个更明显的位置来查找站点范围的配置,例如 include_path。 行:
以下是您应放入 .htaccess 文件中或 Linux 服务器上的
If you really want to use set_include_path, you can do it like this:
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:
or on a Linux server: