示例#1
0
文件: Service.php 项目: JudonH/writer
 /**
  * 启动服务
  */
 public static function start()
 {
     self::init();
     $get_args = $_GET;
     $post_args = $_POST;
     App_Plugin::do_action(App_Key::$TAG_SERVICE_EXECUTE);
     self::_exec($get_args, $post_args);
     App_Plugin::do_action(App_Key::$TAG_SERVICE_STOP);
 }