类内部函数调用内部的函数和变量要加$this->,外部访问类内值 类名->
class kk{function aa(){ echo "aa";}function bb(){ return $this->aa();}
}$cc= new kk;$cc->bb();