PHP: Warning: include failed to open stream no such file or directory on Windows(PHP:警告:包括未能在 Windows 上打开流没有这样的文件或目录)
问题描述
我在 Windows 上的 xampp 上运行的 PHP 脚本中有一个 include 语句.如果我使用相对路径:
I have an include statement in a PHP script running on xampp on Windows. If I use a relative path :
include '../config/eventInfoConfig.php';
我收到错误消息:
警告:include(../config/eventInfoConfig.php) [function.include]:打开流失败:没有这样的文件或目录
Warning: include(../config/eventInfoConfig.php) [function.include]: failed to open stream: No such file or directory
但是如果我使用绝对路径我没有错误:
But if I use the absolute path I have no error:
include 'c:/xampp/htdocs/xampp/appTrials/myApp/config/eventInfoConfig.php';
如何在我的包含中使用相对路径而不导致错误?
How can I use a relative path in my include without causing an error?
推荐答案
修复 include_path()
以包含正确的路径就可以了.
Fixing the include_path()
to include the right path does the trick.
这篇关于PHP:警告:包括未能在 Windows 上打开流没有这样的文件或目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP:警告:包括未能在 Windows 上打开流没有这样的文件或目录
基础教程推荐
- 在多维数组中查找最大值 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01