Back

checkStrHasLetters

Copy Below Code View As A Text File Show Text Only Show API Edit Code
                            

function checkStrHasLetters($str) { preg_match('/[a-zA-z]/', $str, $matches); $result = (count($matches) != 0) ? 1 : 0; return $result; }