次のコードがあります。
class db {
//database class, connects and closes a database connection
//some properties and methods are hided (such as host-adres, username...)
public function connect()
{
mysql_connect(//parameters)or die(mysql_error());
}
}
class ban {
//ban class, bans an ip, again some methods and properties are hided
public function banIP()
{
//here i want to access the connect function of the class db,
//without creating a object.
//some code
}
}
さて、私の質問は、クラス dbbanIP()
の関数を使用して、メソッド内からデータベースに接続する必要があることです。connect()
しかし、接続機能にアクセスするにはどうすればよいでしょうか?