PHP 8.5.0 Alpha 2 available for testing

Voting

: max(five, eight)?
(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