Jump to content

Is there a function..


Lamez

Recommended Posts

ctype_alpha() See the manual as the ctype_ has many different applications, but there is a preg_match angle that you can do too which is something like this:-

 

!preg_match("/^\d+$/im", $input);<-- Inverting it so it does what you want, doesn't allow digits..

 

At least I think I have that right..

 

if (ereg('[^A-Za-z]', $text))

 

Ereg functions have been deprecated a while now in preference to preg_ functions... The manual tells you all you need to know..

 

Rw

Link to comment
https://forums.phpfreaks.com/topic/215798-is-there-a-function/#findComment-1121864
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.