<?php $desc = '<a href="http://mywebsite.com" cat_id="156" tab-id="3">My name</a><a href="http://mywebsite.com" cat_id="111" tab-id="4">My name 2</a>'; $dom = new DOMDocument(); $dom->loadHTML($desc); foreach ($dom->getElementsByTagName("a") as $element) { echo $element->getAttribute("cat_id"); echo "<br>"; echo $element->getAttribute("tab-id"); echo "<br>"; echo $element->nodeValue; echo "<br>"; }
You have javascript disabled. You will not be able to edit any code.