💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
### 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' ); } } ~~~