如何让数据库字段中的php代码运行?

WBOY
Release: 2016-06-23 14:11:27
Original
869 people have browsed it

如何让数据库字段中的php代码运行?


回复讨论(解决方案)

一般用 eval 函数就可以了

没明白什么问题

抄了个例子,你看看

$string = "beautiful";
$time = "winter";

$str = 'This is a $string $time morning!';
echo $str. "
";

eval("\$str = \"$str\";");
echo $str;
?> 


输出结果:

This is a $string $time morning!
This is a beautiful winter morning! 

在当前php程序中读出代码所在的字段内容,生成另外一个.php,再跳转到该文件。

直接取出来,放到页面显示就可以了,$row['part_code']

假如 数据库字段取出来值为 变量 $phpcode
eval($phpcode);

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template