Is there a PHP equivalent of Java's Character.getNumericValue(char c)?

link|improve this question

75% accept rate
feedback

4 Answers

Use the intval() function.

This will not handle letters or roman numerals the same way, but you could create your own method to do that for those cases. It will handle standard digits, though.

if (intval("2") === 2)
  echo("YAY!");
link|improve this answer
1  
intval is indeed interesting. Using base 36 should make it handle letters as well. – casablanca Oct 14 '10 at 18:38
That's brilliant! – Erick Robertson Oct 14 '10 at 19:25
feedback

ord

Edit: Oops, that's not what getNumericValue does. I guess the answer is no then. You'll have to make up a table of your own that maps numeric characters to numbers.

If you want a function that works with the most common numeric characters, you could do something like this, but it would fail for special Unicode numerals:

function getNumericValue($ch) {
  if (ctype_digit($ch))
    return ord($ch) - ord('0');
  if (ctype_upper($ch))
    return ord($ch) - ord('A') + 10;
  if (ctype_lower($ch))
    return ord($ch) - ord('a') + 10;
  return -1;
}
link|improve this answer
feedback
up vote 0 down vote accepted

No. There are no baked in equivalents.

link|improve this answer
feedback

Is this what you want?

http://us.php.net/ord

link|improve this answer
I don't think so, as ord() is limited to the ASCII character space. That Java method returns a Unicode value. – BoltClock Oct 14 '10 at 18:26
and getNumericValue doesn't return that value anyways – Erick Robertson Oct 14 '10 at 18:31
feedback

Your Answer

 
or
required, but never shown

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