示例
class Test{
function aa(){
$this->bb(); //使用$this变量表示当前类
}
function bb(){
echo "引用过去了";
类使用方式
$class = new Test();
$class->a();