$this->id 和 $id 有什么区别。
class Test{
public $id;
function Test(){
$this->id = 1;
}
}
===
class Test{
public $id;
function test(){
$id = 1;
}
}
如何从其他类中获取变量?
class TestA{
public $test;
function TestA(){
$this->test = new Test();
echo $this->test->id;
}
}