// Syntax
version_compare(string $version1, string $version2, ?string $operator = null): int|bool
// operators are: <, lt, <=, le, >, gt, >=, ge, ==, =, eq, !=, <>, ne
// Examples
version_compare('8.5.0', '8.0.0', '>='); // returns true
version_compare('8.5.0', '8.0.0', '<'); // returns false