Search code examples
phptagsstrip

Is there a way to delete all embed, object, script tags in php?


Is it possible to delete all embed, object, script tags in php?


Solution

  • I just coded this onfly without testing, so please let me know if it doesn't work :)

    <?php
    $output = preg_replace('/<script.+?<\/script>/im', "", $output);
    $output = preg_replace('/<embed.+?<\/embed>/im', "", $output);
    $output = preg_replace('/<object.+?<\/object>/im', "", $output);
    ?>