Alphabetic equivalent of PHP is_numeric

前端 未结 4 1914
孤城傲影
孤城傲影 2021-01-21 05:35

I am looking for a function that would be the alphabetic equivalent of is_numeric. It would return true if there are only letters in the string and false otherwise. Does a bui

4条回答
  •  情书的邮戳
    2021-01-21 06:00

    I would have used preg_match. But that's because I'd never heard of ctype_alpha().

    if(!preg_match("/[^a-zA-Z]/", $teststring)) {
        echo "There are only letters in this string";
    } else {
        echo "There are non-letters in this string";
    }
    

提交回复
热议问题