0
<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,并以相同的方式显示?

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

4

1 回答 1

1

Your statement echo "<img sr='$image'/>"; is incorrect. The correct one is

echo "<img src='$image'/>";  
于 2012-05-04T17:46:39.910 回答