我在回声中得到了一个iframe:
<iframe width='100%' height='100'>$content</iframe>
$content = eval ( "\$bugs = \"" . gettemplate ('bugs') . "\";" );
但它不起作用。
如何使用php中的eval函数在iframe中显示页面?
日Thnx!
答案 0 :(得分:0)
请参阅以下代码
<?php
$string = 'cup';
$name = 'coffee';
$str = 'This is a $string with my $name in it.';
echo $str. "\n";
eval("\$str = \"$str\";");
echo $str. "\n";
?>