Advertisement
Guest User

Untitled

a guest
Feb 9th, 2012
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2. $html = file_get_contents('http://www.stackoverflow.com/');
  3. $dom = new DOMDocument; // init new DOMDocument
  4. $dom->loadHTML($html); // load HTML into it
  5. $xpath = new DOMXPath($dom); // create a new XPath
  6. $nodes = $xpath->query('//a[@href]'); // Find elements with a style attribute
  7. foreach($nodes as $node) { // Iterate over found elements
  8. $node->removeAttribute('href'); // Remove style attribute
  9. }
  10. echo $dom->saveHTML();
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement