私は2つのクラスを持っています、そして私は快適さのためにもう1つ持っていたいです:)
だから私はデータベースとシステムのためのクラスを持っています。関数の3番目のクラスが欲しいのですが。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
}
}
}
そして、私はこの種のバージョンがサイクルで終了します。解決策はありますか?どうもありがとう