当我在索引中调用它时,我的另一个需要一旦 php 页面出错
Posted
技术标签:
【中文标题】当我在索引中调用它时,我的另一个需要一旦 php 页面出错【英文标题】:my other require once php page gets error when i call it in index 【发布时间】:2021-12-04 10:50:54 【问题描述】:当我尝试在 index.php 中调用 product_class.php 时出现此错误。我的 product_class.php 工作正常,但是当我尝试将其添加到索引时出现此错误:
警告:require_once(../Includes/config/general.php):无法打开流:D:\Programming\Web\xampp\htdocs\android-api\product\ 中没有这样的文件或目录product_class.php 在第 2 行
致命错误:require_once():在 D:\ 中打开所需的“../Includes/config/general.php”(include_path='D:\Programming\Web\xampp\php\PEAR')失败Programming\Web\xampp\htdocs\android-api\product\product_class.php 在第 2 行
这里是我的 index.php 代码
<?php
require_once('product/product_class.php');
require_once('Includes/config/general.php');
require_once INCLUDES_DIR.'/database.php';
?>
【问题讨论】:
【参考方案1】:确保指定正确的文件路径。如果 index.php 文件和 product 或 Includes 文件夹在同一个文件夹中,试试这个:
require_once __DIR__ . '/product/product_class.php';
require_once __DIR__ . '/Includes/config/general.php';
【讨论】:
以上是关于当我在索引中调用它时,我的另一个需要一旦 php 页面出错的主要内容,如果未能解决你的问题,请参考以下文章
当我尝试在javascript(Nodejs)中的另一个类中访问它时,类变成一个空对象[重复]