Skip to content

Instantly share code, notes, and snippets.

View wkjagt's full-sized avatar

Willem van der Jagt wkjagt

  • Shopify
  • Oka (Montreal area)
View GitHub Profile
@wkjagt
wkjagt / remove_script_tags.php
Last active November 12, 2020 06:26
Remove script tags from html
<?php
function removeDomNodes($html, $xpathString)
{
$dom = new DOMDocument;
$dom->loadHtml($html);
$xpath = new DOMXPath($dom);
while ($node = $xpath->query($xpathString)->item(0)) {
$node->parentNode->removeChild($node);
}