在php中$this->_power=$status;这个语句中->是什么意思呢?
来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/11/19 04:18:10
在php中$this->_power=$status;这个语句中->是什么意思呢?
整个的代码是这样的:
class Appliance{
private $_power;
function setpower($status){
$this->_power=$status;
}
}
.
$blender=new Appliance;
整个的代码是这样的:
class Appliance{
private $_power;
function setpower($status){
$this->_power=$status;
}
}
.
$blender=new Appliance;
对象的引用
比如你上面的
$this->_power是指$_power这个变量
$this->_power=$status;
意思是为变量$_power赋值$status
$this是当前对象的意思
->是引用的意思
比如你上面的
$this->_power是指$_power这个变量
$this->_power=$status;
意思是为变量$_power赋值$status
$this是当前对象的意思
->是引用的意思
$this->obj->data在PHP中是什么意思啊?
php中$是什么意思$这个符号是什么意思啊
php中::是什么意思?
php中 $this->...= ,&,的用法是什么
PHP中这句话是什么意思呢?ereg_replace("[/\\]{1,}",'/',dirname(__FILE__)
PHP中
php中foreach($_DTYPE as $optionid => $option)是什么意思
在php语句中,什么情况下可以不需要引号,什么时候用双引号,什么时候用单引号?
php中“->”是什么意思最好用实例说明
从PHP语句“$d3=$d1+$d2*2;”中,最多可以找出_____个表达式
在数学中*这个符号是什么意思呢
*(a+i*n+j) = 0;在C语言中这个语句是什么意思啊