Skip to content

Instantly share code, notes, and snippets.

@GodSaveEarth
Created July 23, 2019 05:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GodSaveEarth/456b210e118ee4e89fc0ac78c49bd0f3 to your computer and use it in GitHub Desktop.
Save GodSaveEarth/456b210e118ee4e89fc0ac78c49bd0f3 to your computer and use it in GitHub Desktop.
function strposm($s,$a) {
foreach($a as $s1) {
if(stripos($s, $s1)!== false) return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment