Skip to content

Instantly share code, notes, and snippets.

@makingthingswork
Last active November 19, 2020 14:35
Show Gist options
  • Save makingthingswork/564bede011d17b39153fb2f08a2d1e67 to your computer and use it in GitHub Desktop.
Save makingthingswork/564bede011d17b39153fb2f08a2d1e67 to your computer and use it in GitHub Desktop.
Check for HTML
<?php
function is_html(string){
return (string != strip_tags(string)) ? true : false;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment