怎么让数据库字段中的php代码运行
时间:2021-07-01 10:21:17
帮助过:9人阅读
如何让数据库字段中的php代码运行?
如何让数据库字段中的php代码运行?
分享到:
------解决方案--------------------抄了个例子,你看看
$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!