Skip to content

Instantly share code, notes, and snippets.

View AcTiv3MineD's full-sized avatar
👋
For hire

César Méndez AcTiv3MineD

👋
For hire
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);
}