new MySqli("$this-> localhost","$this-> root","$this-> password&qu
答案:1 悬赏:40 手机版
解决时间 2021-02-20 19:38
- 提问者网友:蓝莓格格巫
- 2021-02-19 20:15
new MySqli("$this-> localhost","$this-> root","$this-> password","$this-> db")类后面的参数是什么?
最佳答案
- 五星知识达人网友:大漠
- 2021-02-19 20:51
在类中使用了构造方法的情况下,创建对象时提供的参数,将提供给构造方法。
构造方法,是用于创建对象时,用于对类或对象进行一系列的初始化。
function __construct($localhost,$root,$password,$db)
{
$this->localhost=$localhost;
$this->root=$root;
$this->password=$password;
$this->db=$db;
//以下是进行数据库连接的其它语句
}
构造方法,是用于创建对象时,用于对类或对象进行一系列的初始化。
function __construct($localhost,$root,$password,$db)
{
$this->localhost=$localhost;
$this->root=$root;
$this->password=$password;
$this->db=$db;
//以下是进行数据库连接的其它语句
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯