我想在所有标签img之前和之后添加标签div。
所以我有
<img src=%random url image% />
它应该替换为
<div class="demo"><img src=%random url image% /></div>
我可以用preg_replace吗?
$string = %page source code%;
$find = array("/<img(.*?)\/>/");
$replace = array('<div class="demo">'.$find[0].'</div>');
$result = preg_replace($find, $replace, $string);
但它不起作用:/
答案 0 :(得分:2)
解析HTML的更好方法是使用PHP DOMDocument
和DOMXPath
类。就您而言,您可以使用XPath查找所有图像,然后在它们周围添加一个div,如本示例所示:
$html = '<div><img src="http://x.com" /><span>xyz</span><a href="http://example.com"><img src="http://example.com" /></a></div>';
$doc = new DOMDocument();
$doc->loadHTML($html, LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD);
$xpath = new DOMXpath($doc);
$images = $xpath->query('//img');
foreach ($images as $image) {
$div = $doc->createElement('div');
$div->setAttribute('class', 'demo');
$image->parentNode->replaceChild($div, $image);
$div->appendChild($image);
}
echo $doc->saveHTML();
输出:
<div>
<div class="demo"><img src="http://x.com"></div>
<span>xyz</span>
<a href="http://example.com">
<div class="demo"><img src="http://example.com"></div>
</a>
</div>