在没有shell_exec()和exec()的php中运行jar

时间:2014-09-22 17:10:54

标签: php jar exec shell-exec

我有一个代码

<?php
   if (isset($_GET['_escaped_fragment_'])) {
      $url = ' http://'.$_SERVER['SERVER_NAME'].'/'.escapeshellarg($_GET['_escaped_fragment_']);
      $result = shell_exec('java -jar htmlunit.jar'.$url);
      echo $result;
   }
?>

当我尝试运行它时,我看到一个错误

Warning: shell_exec() has been disabled for security reasons

与exec()相同

Warning: exec() has been disabled for security reasons

我的托管不能为我改变php.ini。

我怎么能运行jar?

0 个答案:

没有答案