“返回$this”是什么意思?
2022-08-30 13:47:30
我试图理解这个代码,当我到达最后一行时,我没有得到它。:(
我能得到你的帮助,以便找出,返回$this
是什么意思?
public function setOptions(array $options) {
$methods = get_class_methods($this);
foreach ($options as $key => $value) {
$method = 'set' . ucfirst($key);
if (in_array($method, $methods)) {
$this->$method($value);
}
}
//???? - return what ?
return $this;
}
更新:
为了更好地澄清,我删除了我的评论。