联系官方销售客服
1835022288
028-61286886
请问下我在官方插件里面看到一句这个:
//获取对应ID内容
$data = $this->_Show($id, null, null, 1);
我现在需要仿照这个获取这个内容的模块表单内容,应该如何使用这种简便写法呢,我现在是这样写的,也能获取到数据,但是感觉不够优美:
$data = \Phpcmf\Service::M()->table(SITE_ID.'_'.MOD_DIR.'_form_zibiao') ->where('cid', $id) ->where('status=1') ->getRow();