我正在尝试使用PHP DOM来抓取我的输出中的一些数据
<!-- onclick="getinfo(this)"-->
<a href="#">Link1</a>Â Â Â
我不想
<a href="#">Link1</a>
删除Â并从脚本中尝试此代码
foreach ($xpath->query('Â') as $link) {
// Move all link tag content to its parent node just before it.
while($link->hasChildNodes()) {
$child = $link->removeChild($link->firstChild);
$link->parentNode->insertBefore($child, $link);
}
// Remove the link tag.
$link->parentNode->removeChild($link);
}
但它给出了错误,请帮助