Shell.php 241 B

123456789101112131415161718
  1. <?php
  2. namespace Dy;
  3. class Shell
  4. {
  5. /**
  6. * shell
  7. *
  8. * @param string $cmd 命令
  9. * @param string $flags 参数
  10. *
  11. * @return bool
  12. */
  13. public static function exec(string $cmd, string $flags)
  14. {
  15. }
  16. }