Terminal.php 208 B

1234567891011121314151617
  1. <?php
  2. namespace app\admin\controller;
  3. use ba\Terminal as T;
  4. /**
  5. * WEB终端
  6. * Content-Type: text/event-stream
  7. */
  8. class Terminal
  9. {
  10. public function index()
  11. {
  12. T::instance()->exec();
  13. }
  14. }