Guest User

Untitled

a guest
Jan 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2. $str = '<ul class="top"><li><a href="[T]XX[/T]">Testing</a></li></ul>';
  3. $str = '<?xml encoding="utf-8" ?>'.$str;
  4. $dom = new DomDocument();
  5. @$dom->loadHTML($str);
  6.  
  7. $xpath_menu_bottom = new DomXpath($dom);
  8.  
  9. $x = $xpath_menu_bottom->query('(//ul[@class="top"])[1]')->item(0);
  10.  
  11. var_dump($dom->saveHTML($x));
  12. ?>
Add Comment
Please, Sign In to add comment