0

我有 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
        }

    }
}

而我这种版本以循环结束。有什么解决办法吗?非常感谢

4

1 回答 1

1

您的某些类必须是源,因此其他类可能会使用它的实例。

让我给你看一个例子:

class DataBase { //THIS class is a source.
  public $mysqli ;

  public function __construct(){
    $this->mysqli = new mysqli('localhost', 'root', '', 'roids');
    $this->mysqli->set_charset("utf-8") ;
  }

  public function ready(){
    return ($this->mysqli instanceof MySQLi && $this->mysqli->ping()) ;
  }
}

class User {
  protected $db;
  public function __construct(DataBase $db){
    $this->db = $db ; //Now you can use your source
  }

  public function isBanned(){
    if ($this->db->ready()){
      $result = $this->db->mysqli->query("SELECT id FROM banned WHERE name='Hacker' ; ") ;
      return ($result && $result->num_rows >= 1) ;
    }
    return false ;
  }
}

然后实例化源并将其提供给用户实例:

$database = new DataBase() ;
$user = new User($database) ;

现在您可以使用更复杂的函数:

if ($user->isBanned()) exit("You are banned") ;

您可以使用相同的方式创建类 Functions 并将其(其他类可能使用它)作为源。

于 2013-02-17T21:12:28.307 回答