时间:2021-07-01 10:21:17 帮助过:11人阅读
class A{
public $mes="ok";
}
class B{
public function __construct(){
//下面很多方法都要用到A的对象,于是我在B类构造方法里面直接对象一个,方便下面调用
$a=new A();
}
//下面B的成员方法开始调用A对象的方法
public function test(){
$mes=$a->mes;
//代码运行到这里提示$a不知道是个什么东西,即没有实例化,但上我在构造函数中不是做了吗?好像没有起作用
echo $mes;
}
$b=new B();
$b->test();
}