Skip to content

Instantly share code, notes, and snippets.

@jongacnik
Created September 11, 2018 04:37
Show Gist options
  • Save jongacnik/8811fb21451813ba36360017d2260d26 to your computer and use it in GitHub Desktop.
Save jongacnik/8811fb21451813ba36360017d2260d26 to your computer and use it in GitHub Desktop.
<?php
function str_contains ($str, $arr = []) {
foreach ($arr as $a) {
if (stripos($str, $a) !== false) return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment