Herkes Aşağıdaki kodu değiştirmek için normal bir ifade var:
<a href="originalLink">hi</a>
ile:
<a href="newLink">hi</a>
PHP Simple HTML Dom Parser, örneğin:
// Create DOM from URL or file
$html = file_get_html('http://www.google.com/');
// Find all links
$anchors = $html->find('a');
$count = count($anchors);
for($i=0;$i<$count;$i++) {
$anchors[$i]->href = 'someLink.html';
}
Eğer href
değiştirmek istediğiniz çapa biliyorsanız, böyle bir şey yapın:
$html->find('a[href=something]', 0)->href = 'someLink.php';