我想为 OpenCart 开发模块,但我是 PHP 中的 OOP 新手。我很难解释 OpenCart 代码。
我知道以下语句在 PHP 中的含义,即通过 $this 访问类的方法和变量,$this 是对调用对象的引用。
$this->custom_function();
$this->defined_variable;
但是我不明白这样的说法。$this->config->get('config_template')
或者这个$this->request->get['field']
等等。
各位能不能帮我理解一下。它是如何被阅读/解释的?