タイトルが示すように、私は次のような状況にあります。
require_once("connect.php") //database connection file
class one {
private $mysqli;
function __construct ($dbi) {
$this -> mysqli = $dbi;
}
function one {
// ... function using things like $this -> mysqli -> prepare and so on...
}
}
そして、同じファイルで:
class two {
private $mysqli;
function __construct ($dbi) {
$this -> mysqli = $dbi;
}
function two {
// here I need to access the function "one" of the class "one"
// If i do something like $one = new one ($mysqli) I get an error on the __construct
}
}
私はこれに本当に腹を立てていますが、私は PHP の OOP の初心者なので、それほど難しくないと思います。誰かが私を助けてくれることを願っています。