PHP 8.5.0 Alpha 4 available for testing

Voting

: min(eight, three)?
(Example: nine)

The Note You're Voting On

php dot rb4ib at simplelogin dot com
1 month ago
While `+` is typically used to append metadata that are not supposed to be accounted for version comparison, the PHP version_compare function will actually consider that it decreases the version (by less than the least significant number) so:

```
version_compare('1.0.0+something', '1.0.0', '>=')
```

will return `false`

<< Back to user notes page

To Top