使用php回应html文件

时间:2012-05-04 04:05:24

标签: php html web

<html>
<body>
<?php
$html='<html>
<body>
<p>
Illustrating wget -r , with images too  
</p>
<p>
This is the first image
    <img src="abc.JPG" alt="First Captured Image"/>
</p>
<p>
This is the second image
<img src="def.JPG" alt="Second Captured Image"/>
</p>
</body>
</html>'; 
echo($html);
$dom = new domDocument;
@$dom->loadHTML($html);

$dom->preserveWhiteSpace = false;
$images = $dom->getElementsByTagName('img');
foreach ($images as $image) {
echo $image->getAttribute('src');
echo $alter->get Attribute('alt');
echo "<img sr='$image'/>";  
}

</body>
</html>

我的代码是解析上面的html代码中的图像,然后使用php再次回显它。 这是我的示例代码。如何回应上面的html代码,使用php,并以相同的方式显示?

我尝试过这样做,但我无法将图像放在与检索位置完全相同的位置。我不想使用“header(contents)”

1 个答案:

答案 0 :(得分:1)

您的陈述echo "<img sr='$image'/>";不正确。正确的是

echo "<img src='$image'/>";