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.

8 lines
155 B

3 years ago
  1. <?php
  2. /**
  3. * /usr/local/php/etc/php.ini中
  4. * disable_functions=shell_exec去掉
  5. */
  6. $output = `ls -l`;
  7. echo $output.PHP_EOL;
  8. ?>