Skip to content

Instantly share code, notes, and snippets.

@M4R14
Created October 10, 2019 13:03
Show Gist options
  • Select an option

  • Save M4R14/73e3373ef12cf8ec63da302ec32d3b83 to your computer and use it in GitHub Desktop.

Select an option

Save M4R14/73e3373ef12cf8ec63da302ec32d3b83 to your computer and use it in GitHub Desktop.
#!/usr/bin/php
<?php
$olddom = new DOMDocument('1.0', 'utf-8');
$olddom->loadHTMLFile('arc.html');
$boby = $olddom->getElementsByTagName('body')->item(0);
$boby->insertBefore(
$olddom->createElement('h1', 'Zippy'),
$olddom->getElementsByTagName('p')->item(0)
);
foreach ($boby->childNodes as $key => $value) {
$boby->insertBefore(
$olddom->createElement('h1', 'Zippy'),
$value
);
}
echo $olddom->saveHTML();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment