如题,
class company_manage extends MY_Controller{
public $name = '';
fucntion a(){
$this->name = 'abc';
}
function b(){
$n = $this->name;
echo $n;
}
}
代码如上,我想在b方法里边使用到这个$name属性,但是拿不到,拿到的只是未在a方法赋值前的值。
犯罪嫌疑人X
繁星点点滴滴