In PHP, how do I distinguish between a number as a string [0-9] versus an operator (+-*/) or letter [A-Za-z]?
I tried this, but intval also converts the type of nonnumbers to ints as well:
is_int(intval($somestr));
Is regex the way to do it?
|
feedback
|
|
Try
| |||||
feedback
|
|
Use the ctype functions. E.g.:
| |||||||||||
feedback
|