标签: php magento
我在看这个文件:
https://github.com/magentomirror/magento-mirror/blob/magento-1.5/app/code/core/Mage/Catalog/controllers/ProductController.php
做什么:
$this
和
$this->
参考?
答案 0 :(得分:6)
在这种情况下,它指的是对象“Mage_Catalog_ProductController”。 “$this”指的是当前对象,因此它与调用它的类相关。
Mage_Catalog_ProductController
PHP Manual for OOP