这行代码是什么意思

2016-07-07 16:49 来源:www.chinab4c.com 作者:ecshop专家

app\my_goods.app.php 里
  1. function My_goodsApp()
  2. {
  3. parent::__construct();

  4. $this->_store_id= intval($this->visitor->get('manage_store'));
  5. $this->_goods_mod =& bm('goods', array('_store_id' => $this->_store_id));
  6. $this->_spec_mod=& m('goodsspec');
  7. $this->_image_mod =& m('goodsimage');
  8. $this->_uploadedfile_mod =& m('uploadedfile');
  9. }
复制代码
其中
  1. $this->_goods_mod =& bm('goods', array('_store_id' => $this->_store_id));
复制代码
是什么意思

回答:
给_good_mod取得一个实例了的业务模型对象

顶下