Allow only capital and small letters

前端 未结 5 589
暗喜
暗喜 2021-01-18 07:59

I would like to accept only small and capital letters from the user.

I tried the below code, it echoes the invalid character message but doesn\'t work. I mean it doe

5条回答
  •  再見小時候
    2021-01-18 08:32

    If you just want to check you could use ctype_alpha() but you said you want to ACCEPT only letters so if you choose to accept the input you could:

    $fname=preg_replace('/[^a-z]/i','',$fname);
    

    better after the check

提交回复
热议问题