PHP 动态执行

在页面上直接输入代码,点击执行,返回执行结果

方法很简单,主要使用了 $newfunc = create_function('', $code); 函数来实现。

代码如下:

<?php

$code = 'return "no code!";';
if (isset($_POST['code']) && $_POST['code'] != '')
{
    $code = $_POST['code'];
}
$newfunc = create_function('', $code);
$res = $newfunc();

?>

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>XXX</title>
    </head>
    <body>
        <form action="run.php" method="POST">
        <textarea name="code" style="width:100%; height:300px;"><?php echo $code ?></textarea><br>
        <input type="submit" value="RUN" />
        </form>
        <hr>
        <div><?php echo $res ?></div>
    </body>
</html>

 

下载:https://files.cnblogs.com/zjfree/php_run.rar

相关文章:

  • 2021-06-07
  • 2022-01-26
  • 2022-12-23
  • 2021-12-05
  • 2021-12-28
  • 2021-07-25
  • 2021-11-26
  • 2022-02-19
猜你喜欢
  • 2021-06-12
  • 2021-07-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-06
相关资源
相似解决方案