这几天我快疯了,我真的需要你的帮助,因为我不知道还能做什么。我什么都试过了。
这是问题所在:我有两个文件。site.php
和logs.php
。
以下是 的内容logs.php
:
class Logs {
function __construct() {
}
}
现在是有趣的部分,“site.php”的开头:
require_once("database.php");
require_once("logs.php");
class Site {
private $db;
private $logs;
function __construct() {
$this->logs = new Logs(); ### this is the error line
$this->db = new MySQLDatabase();
}
}
它们都在同一个目录中。为什么找不到我的班级?