Comme l'a dit Hobo Sapiens, l'hôte que vous fournissez n'existe pas ou est mal orthographié, je ne connais pas la structure de votre $request
objet. Votre structure d'objet doit ressembler à ce qui suit.
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;
}
}
Ensuite, vous pouvez faire quelque chose comme ce qui suit
$request = new Request('localhost', 'TestingPDO', 'root', '');
$modelinstall = new modelInstall();
$modelinstall->main($request);