문자열에 특정 문자가 포함되어 있는지 확인

# Check 함수
function strpos_array($haystack, $needle) {
    $pos = FALSE;
    if (!is_array($needle)) $needle = array($needle);
    foreach ($needle as $what) {
        if (($pos = strpos($haystack, $what)) !== FALSE) {
            return $pos;
        }
    }
    return FALSE;
}

$filters = array("TEST", "test", "Pass", "PASS");
$strText = "The TEST Code !!"
if (strpos_array($strText, $filters) !== false) {
    // nothing to do
    echo json_encode("Text has been filtered");
    return;
}

to Top