Skip to content

Instantly share code, notes, and snippets.

@marcobraghim
Created December 22, 2018 18:34
Show Gist options
  • Save marcobraghim/c8aebffee42be03ae6211c00891002f6 to your computer and use it in GitHub Desktop.
Save marcobraghim/c8aebffee42be03ae6211c00891002f6 to your computer and use it in GitHub Desktop.
Remove <script> tag
<?php
/** Remove <script> tag **/
function string($value) {
return trim(preg_replace("#<\s*script[^>]*>((.*?)<\s*/\s*script>)?#i", '', $value));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment