Jak řekl Hobo Sapiens, hostitel, který poskytujete, neexistuje nebo je napsán chybně, neznám strukturu vašeho $request
objekt. Struktura vašeho objektu musí být něco jako následující.
class Request
{
private $host;
private $db_name;
private $db_username;
private $db_pwd;
public function __construct($host,$db_name,$db_username,$db_pwd) {
$this->host = $host;
$this->db_name = $db_name;
$this->db_username = $db_username;
$this->db_pwd = $db_pwd;
}
public function getHost(){
return $this->host;
}
public function getDBName(){
return $this->db_name;
}
public function getDBUsername(){
return $this->db_username;
}
public function getDBPwd(){
return $this->db_pwd;
}
}
Pak můžete udělat něco jako následující
$request = new Request('localhost', 'TestingPDO', 'root', '');
$modelinstall = new modelInstall();
$modelinstall->main($request);