php this、self、parent区别
1、this是指向当前对象的指针 如:同class里面的其他函数可以用 this->函数名 调用。 2、self是指向当前类的指针 一般self使用来指向类中的静态变量,还要注意使用self来调用静态变量必须使用:: (域运算符号) 如:self::$firstCount; //使用self来调用静态变量 3、parent是指向父类的指针 一般我们使用parent来调用父类的构造函数 如:parent::__construct( "PBPHome"); //使用parent调用了父类的构造函数
相关推荐
zyyjay 2020-11-09
xuebingnan 2020-11-05
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
Noneyes 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28
diskingchuan 2020-10-23
savorTheFlavor 2020-10-23