Voting

: four minus three?
(Example: nine)

The Note You're Voting On

Katrina Kizenbach
2 years ago
Note that is_numeric() will evaluate to false for number strings using decimal commas.

is_numeric('0.11');
Output: true

is_numeric('0,11');
Output: false

<< Back to user notes page

To Top