我通过OOP跟踪Aleana的视频,我了解关键字$ this,self等的概念,但是当她引用$ this-> property_name-> method_name();时,我很困惑。
这是说我们正在将属性传递给方法吗?我的描述是她返回$ this-> current()-> details
的地方下面的示例代码:
public function shortDescription()
{
if(strlen($this->current()->details) < 510){
return strip_tags($this->current()->details);
}
}
任何帮助我理解它的帮助将不胜感激。