You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
265 B

  1. <?php
  2. /**
  3. * $APP_NAME 统一入口
  4. */
  5. require_once dirname(__FILE__) . '/init.php';
  6. //装载你的接口
  7. DI()->loader->addDirs('Demo');
  8. /** ---------------- 响应接口请求 ---------------- **/
  9. $api = new PhalApi();
  10. $rs = $api->response();
  11. $rs->output();