iframe中的php eval函数

时间:2010-03-18 09:12:19

标签: php iframe eval

我在回声中得到了一个iframe:

<iframe width='100%' height='100'>$content</iframe>
$content = eval ( "\$bugs = \"" . gettemplate ('bugs') . "\";" );

但它不起作用。

如何使用php中的eval函数在iframe中显示页面?

日Thnx!

1 个答案:

答案 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";
?>