Dutch PHP Conference 2025 - Call For Papers

rpmvercmp

(PECL rpminfo >= 0.1.0)

rpmvercmpRPM version comparison

Опис

rpmvercmp(string $evr1, string $evr2, ?string $operator = null): int|bool

Compare 2 RPM versions.

Параметри

evr1

First epoch:version-release string

evr2

Second epoch:version-release string

operator

An optional operator. The possible operators are: <, lt, <=, le, >, gt, >=, ge, ==, =, eq, !=, <>, ne respectively.

This parameter is case-sensitive, values should be lowercase.

Значення, що повертаються

Returns < 0 if evr1 is less than evr2, > 0 if evr1 is greater than evr2, and 0 if they are equal.

When using the optional operator argument, the function will return true if the relationship is the one specified by the operator, false otherwise.

Журнал змін

Версія Опис
0.7.0 Optional operator was added.
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top