当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP实现动态执行代码的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-21 15:35:43 浏览: 评论:0 

这篇文章主要介绍了PHP实现动态执行代码的方法,涉及PHP中create_function函数的使用技巧,需要的朋友可以参考下。

本文实例讲述了PHP实现动态执行代码的方法,分享给大家供大家参考,具体如下:

这里介绍的PHP动态执行,即在页面上直接输入代码,点击执行,返回执行结果

方法很简单,主要使用了:

$newfunc = create_function('', $code);

函数来实现。

代码如下:

  1. <?php 
  2. $code = 'return "no code!";'
  3. if (isset($_POST['code']) && $_POST['code'] != ''
  4.   $code = $_POST['code']; 
  5. $newfunc = create_function(''$code); 
  6. $res = $newfunc(); 
  7. ?> 
  8. <!DOCTYPE html> 
  9. <html> 
  10.   <head> 
  11.     <meta charset="utf-8"
  12.     <title>XXX</title> 
  13.   </head> 
  14.   <body> 
  15.     <form action="run.php" method="POST"
  16.     <textarea name="code" style="width:100%; height:300px;"><?php echo $code ?></textarea><br> 
  17.     <input type="submit" value="RUN" /> 
  18.     </form> 
  19.     <hr> 
  20.     <div><?php echo $res ?></div> 
  21.   </body> 
  22. </html>

Tags: PHP动态执行代码

分享到: