shell.php 169 B

12345678
  1. <?php declare(strict_types=1);
  2. // $re = DY\Shell::shell('ls', '-l');
  3. // var_dump($re);
  4. $re = Dy\Shell::exec('python', "-c \"print('Hello world!')\"");
  5. var_dump($re);