我有 2 节课,为了舒适,我想再上 1 节课 :)
所以我有数据库和系统的课程。我想为函数开设第三堂课。这个类必须使用数据库中的函数,因为有 SQL 查询。这就是我的结尾:
class database {
public function __construct() {
$this->mysqli = new mysqli('localhost', 'root', '', 'roids');
$this->func = new functions();
}
}
class functions {
function __construct(){
$db = new database();
}
public function banned() {
$q = $db->select($this->prefix."banned", "*", "banned_ip", $this->getIP());
if (0 == 0) {
header('Location: banned.php'); // For testing
}
}
}
而我这种版本以循环结束。有什么解决办法吗?非常感谢