Bu benim kod örneğidir.
class SomeClass extends SomeOtherClass
{
function __construct($input)
{
parent::__construct($input);
$this->conn = new mysqli('a','b','c','d');
}
function getConnection()
{
return &$this->conn;
}
}
Benim ana nesne ben onu referans yerine başka MySQLi sınıf oluşturarak MySQLi bağlantı dönmek istiyor.