3

我试图在 php 中制作一个简单的注册系统。我有一个名为 Admin(在控制器文件夹内)的类,它扩展了 DBConnection.php 类。Admin 类有一个注册方法,可以让广告注册,但有问题。'include_once' 发生错误,错误提示'Warning: include_once(../Database/DBConnection.php): failed to open stream: No such file or directory in C:\xampp\htdocs\WoodlandsAway\controller\Admin.php on第 15 行-----''警告:include_once(): 无法打开'../Database/DBConnection.php' 以包含在 C:\xampp\htdocs 中(include_path='C:\xampp\php\PEAR') \WoodlandsAway\controller\Admin.php 在第 15 行-----''致命错误:第 17 行的 C:\xampp\htdocs\WoodlandsAway\controller\Admin.php 中找不到类 'DBConnection''

这是我的 include_once 代码

include_once ('../Database/DBConnection.php');

这是我的文件夹结构

--DBConnection.php

class DBConnection {
//put your code here
private $host;
private $user;
private $pass;
private $database;
private $conn;

function DBConnection() {
    $this->host = 'localhost';
    $this->user = 'root';
    $this->pass = '';
    $this->database = 'woodlands_away';
}

public function getConnections() {
    $this->conn = new mysqli($this->host, $this->user, $this->pass, $this->database) or
    die($this->conn->error);

    return $this->conn;
}

}

和 Admin.php

include_once ('../Database/DBConnection.php');

class Admin extends DBConnection {
public function Admin() {
    parent::DBConnection();
}

public function signup($username, $password) {
    $sql = "insert into users values(".$username.", ".$password.")";

    return $this->getConnections()->query($sql);
}}
4

1 回答 1

3

首先,我建议您声明一个代表项目根路径的常量。这个常量必须以独特的方式声明,例如 index.php 或类似的,但在项目的根目录中:

define('PROJECT_ROOT_PATH', __DIR__);

然后您的 include 调用应如下所示:

include_once (PROJECT_ROOT_PATH . '/Database/DBConnection.php');

(始终指定前导斜杠)

问题是当前您的代码可能依赖于工作目录,因此您可能会得到一个意外的工作目录。

于 2017-10-14T12:13:18.017 回答