Is there a PHP equivalent of Java's Character.getNumericValue(char c)?
|
feedback
|
|
Use the 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!");
| |||||||
feedback
|
|
Edit: Oops, that's not what 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:
| ||||
|
feedback
|
|
Is this what you want? | |||||
feedback
|