多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### c\_init **初始化对象** 跳转 编辑/查看页面 参数 : perm = view/edit ~~~ function c_init() { $this->permCheck (); //安全校验 $obj = $this->service->get_d ( $_GET ['id'] ); foreach ( $obj as $key => $val ) { $this->assign ( $key, $val ); } if (isset ( $_GET ['perm'] ) && $_GET ['perm'] == 'view') { $this->display ( 'view' ); } else { $this->display ( 'edit' ); } } ~~~