我需要使用变量 $data 中的输出并将其放入 iframe(或其他可能)中,以便正确滚动它。请找出以下代码中的错误:
<?php
$url = 'http://lema.rae.es/drae/srv/search?id=IwxflJmT9DXX2DMkYs8Z';
$css = <<<EOT
<style type="text/css">
body
{
background: #eeeeee;
}
.a
{
color: green;
}
.f
{
font-size: 200%;
}
.o
{
font-size: 80%;
}
img
{
visibility:hidden;
}
</style>
EOT;
$data = file_get_contents($url);
$data = str_replace('</head>', $css.'</head>', $data);
echo "<iframe id='first' src='$data'
frameborder='0'
width='400px'
height='300px'
scrolling='yes'
border-style: none;></iframe>";
?>
问题可能在最后几行。iframe 中没有出现该词的定义,而是显示了一个错误,指出尚未找到该对象 谢谢!