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
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