标签:bsp 外部 fun ret turn 函数调用 new 调用 class
类内部函数调用内部的函数和变量要加$this->,外部访问类内值 类名->
class kk{
function aa(){
echo "aa";
}
function bb(){
return $this->aa();
}
}
$cc= new kk;
$cc->bb();
标签:bsp 外部 fun ret turn 函数调用 new 调用 class
原文地址:https://www.cnblogs.com/dreamtosky/p/14722676.html