I am trying to return the value for the “label” attribute with no success. I am stuck lol
$dom = new DOMDocument();
@$dom->loadHTML($source);
$xml = simplexml_import_dom($dom);
$code = $xml->xpath("//toolbarbutton");
var_dump($code);
(
[0] => SimpleXMLElement Object
(
[@attributes] => Array
(
[label] => Hello World
[cmd] => redirect
[mode] => true
)
)
)
Try to use