码迷,mamicode.com
首页 > Web开发 > 详细

PHP 动态执行

时间:2014-08-05 10:46:59      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   os   io   strong   

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>

 

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

PHP 动态执行,布布扣,bubuko.com

PHP 动态执行

标签:style   blog   http   color   使用   os   io   strong   

原文地址:http://www.cnblogs.com/zjfree/p/3891490.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!