up vote 0 down vote favorite
share [g+] share [fb]

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?

link|improve this question

60% accept rate
feedback

2 Answers

up vote 6 down vote accepted

Try is_numeric().

is_numeric gives true by f. ex. 1e3 or 0xf5 too. So it's not the same as ctype_digit, which just gives true when only values from 0 to 9 are entered.

link|improve this answer
Why leave a cheeky comment below my answer when yours isn't what he asked for? – Coronatus Jun 6 '10 at 0:28
Because I answered the question & then I saw yours. Using cheeky is cheeky! & it's recursion. – Sepehr Lajevardi Jun 6 '10 at 0:30
feedback

Use the ctype functions. E.g.:

$isNumeric = ctype_digit('123123');
link|improve this answer
better answer here. – Sepehr Lajevardi Jun 6 '10 at 0:25
Except yours is not. He asked how to detect numbers OR letters OR symbols. The is no is_letter or is_symbol functions like ctype has. – Coronatus Jun 6 '10 at 0:29
"How do I distinguish between a number as a string [0-9] VERSUS an operator (+-*/) OR letter [A-Za-z]?" from this I get what I answered! – Sepehr Lajevardi Jun 6 '10 at 0:38
These are both pretty useful, but this time, I'll use is_numeric(). ctype_digit() will come in very handy though. – chimerical Jun 6 '10 at 3:14
Thanks Coronatus and Sepehr! – chimerical Jun 6 '10 at 3:14
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.