Skip to content

Instantly share code, notes, and snippets.

@11joselu
Created August 6, 2019 19:10
Show Gist options
  • Save 11joselu/a7627e27c90bc376c1deb79b1ca11dfd to your computer and use it in GitHub Desktop.
Save 11joselu/a7627e27c90bc376c1deb79b1ca11dfd to your computer and use it in GitHub Desktop.
PHP DOM example
<?php
$my_components = "
<NavbarItems>
<NavbarItemLink>Page 1</NavbarItemLink>
<NavbarItemLink>Page 2</NavbarItemLink>
<NavbarItemLink>Page 3</NavbarItemLink>
</NavbarItems>
";
$doc = new DOMDocument();
$doc->loadXML($my_components);
$children = $doc->childNodes;
foreach ($children as $key => $value) {
echo $doc->saveHTML($element);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment