(PECL rpminfo >= 0.1.0)
rpmvercmp — RPM version comparison
Compare two RPM package versions.
evr1
epoch:version-release
string.
evr2
epoch:version-release
string.
operator
An optional operator.
The possible operators are:
<
, lt
, <=
, le
, >
, gt
, >=
, ge
, ==
, =
, eq
, !=
, <>
, ne
.
Returns -1
if evr1
is less than
evr2
, 1
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.
バージョン | 説明 |
---|---|
PECL rpminfo 0.7.0 |
Optional operator was added.
|